diff --git a/README.md b/README.md index 44b52c70..6859c5f9 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ npm install @layoutit/polycss-react # Vue npm install @layoutit/polycss-vue -# Prepared retained models +# Morph npm install @layoutit/polycss-morph ``` @@ -156,13 +156,12 @@ const html = await exportPolySceneSnapshot(scene.host); If any referenced asset cannot be inlined, the function throws `PolySceneSnapshotError` with `code: "ASSET_INLINE_FAILED"`. -### Prepared retained models +### PolyCSS Morph -`@layoutit/polycss-morph` is an imperative, framework-agnostic package for -models prepared ahead of time and updated through one retained PolyCSS DOM -graph. +Use `@layoutit/polycss-morph` for models built ahead of time and updated through +a stable PolyCSS DOM graph. -Preparation is explicitly Node-only: +Preparation runs in Node: ```ts import { preparePolyMorphModel } from "@layoutit/polycss-morph/prepare"; @@ -203,13 +202,15 @@ updates do not rebuild topology or redraw prepared image resources. Prepared playback uses a two-phase sample: apply `sample.update`, then call `runtime.commit(sample)` only after the retained mount accepts the update. -On browsers that pass PolyCSS's solid-triangle support check, Morph uses -`corner-shape` when available and a CSS border triangle otherwise; Firefox uses -the larger border-triangle variant. Preparation also emits packed alpha-atlas -pages for WebKit/Safari. Every polygon receives a slice sized to its local-2D -bounding rect. Mount creates object URLs from the already-verified package -bytes, selects the fallback once, and revokes those URLs at teardown; it never -refetches, generates, or redraws the atlas. +Morph chooses the triangle paint path once when it mounts. It uses +`corner-shape` where available, a larger CSS border triangle in Firefox, and +prepared alpha-atlas pages in WebKit/Safari. Every polygon receives a slice +sized to its local-2D bounding rect. Mount creates object URLs from the +already-verified package bytes, selects the fallback once, and revokes those +URLs at teardown; it never refetches, generates, or redraws the atlas. + +See the [PolyCSS Morph guide](https://polycss.com/guides/morph/), including the +interactive cube-to-sphere example. ### Polygon Data Model @@ -291,7 +292,7 @@ Each visible polygon is emitted as one leaf element; the renderer chooses the le | `@layoutit/polycss` | Vanilla custom elements and imperative `createPolyScene` API. | | `@layoutit/polycss-react` | React components, hooks, controls, and core re-exports. | | `@layoutit/polycss-vue` | Vue 3 components, composables, controls, and core re-exports. | -| `@layoutit/polycss-morph` | Prepared retained-model contracts, Node preparation, browser loading, sparse deformation, controls, springs, animation, skinning, and playback. | +| `@layoutit/polycss-morph` | Prepared-model loading, retained DOM animation, morph targets, skinning, and playback. | ## Made with PolyCSS diff --git a/packages/morph/README.md b/packages/morph/README.md index 9d4a54d1..95d18435 100644 --- a/packages/morph/README.md +++ b/packages/morph/README.md @@ -1,12 +1,12 @@ # @layoutit/polycss-morph -Prepared retained-model deformation and playback for PolyCSS. +Prepare, load, and animate retained DOM models with PolyCSS. ```bash npm install @layoutit/polycss-morph ``` -## Boundary +## Package entries Morph has two public entries: @@ -19,9 +19,8 @@ Morph has two public entries: packages, mounts one retained PolyCSS graph, and exposes imperative, caller-driven runtimes. -The generic Node preparer directly creates `static-prepared` and -`morph-regions` models. The browser runtime executes all four validated -profiles: +The Node preparer creates `static-prepared` and `morph-regions` models. The +browser runtime supports all four profiles: | Profile | Runtime contract | |---|---| @@ -71,6 +70,9 @@ const frame = deformation.sample({ mounted.apply({ leaves: frame.leafUpdates }); ``` +See the [cube-to-sphere example](https://polycss.com/guides/morph/#example-cube-to-sphere) +for a complete rendered deformation example. + The browser API is intentionally imperative: - load or validate a model; @@ -92,17 +94,15 @@ mounted model keeps the same leaf elements for its lifetime. Runtime updates do not rebuild topology, add or remove leaves, construct image resources, or redraw prepared image resources. -The browser resolves prepared triangles once during mount. On browsers that -pass PolyCSS's solid-triangle support check, Morph uses `corner-shape` when -available and a CSS border triangle otherwise; Firefox uses the larger -border-triangle variant. WebKit/Safari instead uses each leaf's prepared -polygon-sized atlas slice. Mount creates object URLs from the loader's -already-verified image bytes and revokes them at teardown; it does not refetch -package resources. Atlas pages are generated with Node built-ins, so Morph has -no Sharp or other native image dependency. +Morph chooses the triangle paint path once when it mounts. It uses +`corner-shape` where available, a larger CSS border triangle in Firefox, and +each leaf's prepared polygon-sized atlas slice in WebKit/Safari. Mount creates +object URLs from the loader's already-verified image bytes and revokes them at +teardown; it does not refetch package resources. Atlas pages are generated with +Node built-ins, so Morph has no Sharp or other native image dependency. -## Consumer adapters +## Application ownership -Product-specific source cadence, schemas, input ordering, presentation, and -oracle tooling stay in the consuming product. Product adapters own their -prepared packages, mounting paths, presentation, and oracle evidence. +Morph owns the prepared model format and sparse DOM updates. Your application +owns input, timing, presentation, model-specific preparation, and product +behavior. diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7d3f8cb5..f3c02df3 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -272,6 +272,9 @@ importers: '@layoutit/polycss-fonts': specifier: workspace:^ version: link:../packages/fonts + '@layoutit/polycss-morph': + specifier: workspace:^ + version: link:../packages/morph '@layoutit/polycss-react': specifier: workspace:^ version: link:../packages/react diff --git a/website/astro.config.mjs b/website/astro.config.mjs index 088c151c..a917bf1c 100644 --- a/website/astro.config.mjs +++ b/website/astro.config.mjs @@ -35,6 +35,10 @@ export default defineConfig({ find: /^@layoutit\/polycss-fonts$/, replacement: repoPath('../packages/fonts/src/index.ts'), }, + { + find: /^@layoutit\/polycss-morph$/, + replacement: repoPath('../packages/morph/src/index.ts'), + }, { find: /^@layoutit\/polycss$/, replacement: repoPath('../packages/polycss/src/index.ts'), @@ -97,7 +101,7 @@ export default defineConfig({ { label: 'Performance', slug: 'guides/performance' }, { label: 'Projections', slug: 'guides/projections' }, { label: 'Animation', slug: 'guides/animation' }, - { label: 'Prepared Morph Models', slug: 'guides/morph' }, + { label: 'Morph', slug: 'guides/morph' }, ], }, { diff --git a/website/package.json b/website/package.json index 1611daf0..139c012f 100644 --- a/website/package.json +++ b/website/package.json @@ -16,6 +16,7 @@ "@astrojs/starlight": "^0.38.2", "@layoutit/polycss": "workspace:^", "@layoutit/polycss-fonts": "workspace:^", + "@layoutit/polycss-morph": "workspace:^", "@layoutit/polycss-react": "workspace:^", "@types/react": "^19.2.14", "@types/react-dom": "^19.2.3", diff --git a/website/public/morph/morph-targets/LICENSE.txt b/website/public/morph/morph-targets/LICENSE.txt new file mode 100644 index 00000000..8ada2a5f --- /dev/null +++ b/website/public/morph/morph-targets/LICENSE.txt @@ -0,0 +1,21 @@ +The MIT License + +Copyright © 2010-2026 three.js authors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/website/public/morph/morph-targets/assets/lighting-state-000.webp b/website/public/morph/morph-targets/assets/lighting-state-000.webp new file mode 100644 index 00000000..56994ea0 Binary files /dev/null and b/website/public/morph/morph-targets/assets/lighting-state-000.webp differ diff --git a/website/public/morph/morph-targets/assets/solid-triangles-000.webp b/website/public/morph/morph-targets/assets/solid-triangles-000.webp new file mode 100644 index 00000000..ef352713 Binary files /dev/null and b/website/public/morph/morph-targets/assets/solid-triangles-000.webp differ diff --git a/website/public/morph/morph-targets/model.css b/website/public/morph/morph-targets/model.css new file mode 100644 index 00000000..3383dc1d --- /dev/null +++ b/website/public/morph/morph-targets/model.css @@ -0,0 +1,2 @@ +.polycss-morph-leaf{background-repeat:no-repeat;backface-visibility:visible;transform-origin:0 0;} +[data-poly-morph-model="webgl-morphtargets"] .polycss-morph-leaf{background-image:url("./assets/lighting-state-000.webp")!important;background-position-y:var(--polycss-morph-targets-lighting-y,0px)!important;background-repeat:no-repeat!important;background-size:49152px 1312px!important;image-rendering:pixelated;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000000"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 0px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000001"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 32px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000002"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 64px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000003"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 96px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000004"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 128px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000005"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 160px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000006"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 192px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000007"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 224px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000008"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 256px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000009"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 288px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000010"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 320px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000011"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 352px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000012"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 384px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000013"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 416px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000014"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 448px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000015"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 480px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000016"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 512px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000017"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 544px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000018"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 576px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000019"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 608px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000020"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 640px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000021"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 672px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000022"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 704px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000023"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 736px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000024"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 768px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000025"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 800px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000026"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 832px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000027"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 864px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000028"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 896px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000029"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 928px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000030"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 960px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000031"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 992px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000032"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 1024px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000033"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 1056px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000034"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 1088px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000035"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 1120px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000036"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 1152px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000037"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 1184px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000038"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 1216px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000039"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 1248px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000040"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 1280px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000041"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 1312px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000042"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 1344px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000043"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 1376px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000044"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 1408px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000045"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 1440px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000046"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 1472px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000047"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 1504px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000048"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 1536px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000049"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 1568px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000050"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 1600px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000051"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 1632px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000052"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 1664px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000053"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 1696px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000054"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 1728px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000055"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 1760px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000056"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 1792px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000057"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 1824px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000058"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 1856px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000059"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 1888px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000060"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 1920px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000061"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 1952px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000062"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 1984px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000063"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 2016px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000064"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 2048px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000065"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 2080px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000066"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 2112px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000067"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 2144px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000068"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 2176px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000069"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 2208px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000070"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 2240px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000071"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 2272px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000072"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 2304px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000073"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 2336px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000074"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 2368px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000075"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 2400px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000076"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 2432px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000077"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 2464px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000078"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 2496px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000079"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 2528px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000080"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 2560px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000081"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 2592px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000082"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 2624px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000083"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 2656px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000084"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 2688px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000085"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 2720px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000086"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 2752px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000087"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 2784px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000088"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 2816px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000089"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 2848px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000090"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 2880px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000091"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 2912px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000092"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 2944px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000093"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 2976px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000094"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 3008px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000095"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 3040px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000096"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 3072px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000097"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 3104px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000098"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 3136px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000099"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 3168px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000100"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 3200px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000101"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 3232px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000102"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 3264px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000103"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 3296px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000104"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 3328px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000105"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 3360px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000106"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 3392px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000107"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 3424px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000108"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 3456px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000109"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 3488px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000110"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 3520px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000111"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 3552px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000112"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 3584px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000113"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 3616px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000114"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 3648px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000115"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 3680px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000116"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 3712px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000117"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 3744px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000118"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 3776px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000119"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 3808px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000120"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 3840px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000121"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 3872px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000122"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 3904px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000123"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 3936px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000124"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 3968px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000125"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 4000px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000126"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 4032px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000127"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 4064px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000128"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 4096px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000129"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 4128px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000130"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 4160px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000131"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 4192px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000132"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 4224px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000133"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 4256px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000134"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 4288px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000135"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 4320px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000136"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 4352px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000137"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 4384px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000138"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 4416px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000139"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 4448px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000140"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 4480px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000141"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 4512px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000142"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 4544px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000143"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 4576px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000144"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 4608px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000145"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 4640px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000146"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 4672px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000147"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 4704px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000148"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 4736px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000149"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 4768px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000150"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 4800px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000151"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 4832px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000152"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 4864px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000153"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 4896px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000154"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 4928px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000155"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 4960px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000156"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 4992px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000157"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 5024px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000158"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 5056px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000159"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 5088px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000160"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 5120px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000161"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 5152px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000162"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 5184px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000163"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 5216px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000164"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 5248px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000165"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 5280px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000166"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 5312px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000167"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 5344px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000168"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 5376px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000169"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 5408px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000170"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 5440px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000171"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 5472px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000172"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 5504px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000173"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 5536px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000174"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 5568px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000175"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 5600px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000176"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 5632px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000177"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 5664px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000178"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 5696px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000179"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 5728px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000180"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 5760px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000181"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 5792px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000182"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 5824px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000183"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 5856px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000184"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 5888px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000185"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 5920px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000186"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 5952px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000187"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 5984px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000188"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 6016px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000189"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 6048px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000190"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 6080px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000191"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 6112px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000192"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 6144px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000193"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 6176px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000194"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 6208px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000195"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 6240px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000196"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 6272px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000197"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 6304px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000198"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 6336px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000199"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 6368px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000200"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 6400px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000201"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 6432px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000202"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 6464px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000203"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 6496px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000204"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 6528px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000205"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 6560px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000206"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 6592px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000207"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 6624px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000208"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 6656px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000209"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 6688px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000210"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 6720px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000211"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 6752px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000212"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 6784px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000213"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 6816px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000214"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 6848px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000215"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 6880px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000216"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 6912px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000217"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 6944px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000218"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 6976px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000219"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 7008px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000220"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 7040px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000221"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 7072px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000222"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 7104px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000223"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 7136px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000224"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 7168px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000225"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 7200px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000226"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 7232px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000227"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 7264px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000228"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 7296px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000229"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 7328px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000230"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 7360px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000231"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 7392px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000232"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 7424px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000233"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 7456px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000234"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 7488px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000235"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 7520px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000236"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 7552px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000237"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 7584px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000238"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 7616px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000239"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 7648px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000240"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 7680px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000241"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 7712px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000242"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 7744px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000243"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 7776px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000244"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 7808px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000245"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 7840px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000246"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 7872px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000247"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 7904px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000248"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 7936px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000249"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 7968px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000250"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 8000px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000251"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 8032px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000252"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 8064px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000253"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 8096px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000254"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 8128px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000255"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 8160px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000256"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 8192px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000257"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 8224px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000258"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 8256px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000259"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 8288px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000260"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 8320px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000261"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 8352px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000262"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 8384px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000263"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 8416px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000264"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 8448px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000265"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 8480px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000266"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 8512px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000267"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 8544px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000268"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 8576px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000269"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 8608px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000270"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 8640px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000271"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 8672px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000272"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 8704px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000273"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 8736px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000274"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 8768px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000275"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 8800px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000276"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 8832px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000277"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 8864px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000278"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 8896px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000279"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 8928px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000280"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 8960px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000281"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 8992px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000282"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 9024px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000283"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 9056px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000284"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 9088px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000285"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 9120px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000286"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 9152px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000287"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 9184px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000288"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 9216px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000289"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 9248px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000290"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 9280px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000291"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 9312px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000292"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 9344px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000293"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 9376px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000294"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 9408px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000295"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 9440px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000296"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 9472px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000297"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 9504px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000298"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 9536px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000299"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 9568px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000300"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 9600px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000301"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 9632px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000302"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 9664px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000303"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 9696px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000304"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 9728px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000305"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 9760px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000306"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 9792px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000307"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 9824px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000308"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 9856px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000309"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 9888px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000310"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 9920px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000311"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 9952px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000312"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 9984px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000313"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 10016px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000314"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 10048px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000315"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 10080px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000316"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 10112px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000317"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 10144px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000318"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 10176px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000319"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 10208px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000320"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 10240px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000321"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 10272px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000322"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 10304px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000323"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 10336px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000324"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 10368px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000325"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 10400px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000326"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 10432px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000327"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 10464px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000328"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 10496px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000329"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 10528px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000330"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 10560px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000331"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 10592px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000332"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 10624px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000333"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 10656px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000334"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 10688px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000335"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 10720px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000336"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 10752px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000337"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 10784px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000338"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 10816px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000339"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 10848px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000340"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 10880px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000341"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 10912px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000342"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 10944px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000343"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 10976px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000344"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 11008px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000345"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 11040px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000346"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 11072px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000347"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 11104px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000348"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 11136px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000349"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 11168px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000350"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 11200px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000351"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 11232px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000352"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 11264px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000353"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 11296px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000354"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 11328px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000355"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 11360px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000356"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 11392px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000357"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 11424px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000358"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 11456px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000359"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 11488px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000360"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 11520px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000361"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 11552px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000362"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 11584px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000363"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 11616px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000364"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 11648px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000365"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 11680px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000366"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 11712px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000367"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 11744px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000368"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 11776px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000369"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 11808px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000370"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 11840px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000371"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 11872px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000372"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 11904px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000373"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 11936px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000374"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 11968px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000375"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 12000px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000376"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 12032px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000377"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 12064px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000378"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 12096px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000379"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 12128px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000380"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 12160px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000381"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 12192px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000382"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 12224px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000383"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 12256px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000384"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 12288px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000385"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 12320px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000386"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 12352px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000387"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 12384px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000388"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 12416px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000389"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 12448px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000390"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 12480px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000391"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 12512px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000392"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 12544px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000393"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 12576px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000394"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 12608px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000395"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 12640px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000396"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 12672px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000397"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 12704px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000398"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 12736px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000399"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 12768px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000400"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 12800px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000401"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 12832px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000402"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 12864px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000403"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 12896px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000404"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 12928px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000405"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 12960px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000406"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 12992px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000407"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 13024px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000408"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 13056px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000409"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 13088px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000410"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 13120px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000411"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 13152px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000412"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 13184px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000413"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 13216px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000414"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 13248px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000415"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 13280px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000416"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 13312px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000417"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 13344px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000418"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 13376px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000419"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 13408px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000420"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 13440px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000421"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 13472px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000422"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 13504px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000423"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 13536px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000424"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 13568px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000425"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 13600px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000426"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 13632px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000427"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 13664px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000428"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 13696px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000429"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 13728px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000430"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 13760px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000431"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 13792px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000432"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 13824px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000433"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 13856px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000434"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 13888px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000435"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 13920px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000436"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 13952px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000437"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 13984px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000438"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 14016px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000439"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 14048px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000440"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 14080px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000441"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 14112px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000442"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 14144px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000443"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 14176px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000444"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 14208px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000445"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 14240px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000446"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 14272px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000447"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 14304px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000448"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 14336px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000449"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 14368px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000450"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 14400px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000451"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 14432px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000452"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 14464px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000453"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 14496px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000454"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 14528px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000455"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 14560px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000456"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 14592px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000457"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 14624px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000458"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 14656px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000459"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 14688px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000460"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 14720px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000461"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 14752px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000462"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 14784px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000463"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 14816px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000464"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 14848px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000465"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 14880px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000466"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 14912px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000467"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 14944px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000468"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 14976px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000469"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 15008px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000470"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 15040px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000471"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 15072px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000472"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 15104px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000473"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 15136px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000474"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 15168px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000475"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 15200px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000476"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 15232px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000477"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 15264px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000478"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 15296px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000479"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 15328px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000480"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 15360px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000481"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 15392px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000482"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 15424px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000483"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 15456px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000484"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 15488px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000485"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 15520px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000486"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 15552px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000487"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 15584px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000488"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 15616px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000489"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 15648px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000490"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 15680px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000491"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 15712px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000492"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 15744px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000493"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 15776px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000494"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 15808px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000495"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 15840px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000496"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 15872px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000497"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 15904px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000498"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 15936px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000499"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 15968px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000500"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 16000px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000501"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 16032px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000502"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 16064px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000503"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 16096px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000504"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 16128px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000505"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 16160px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000506"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 16192px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000507"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 16224px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000508"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 16256px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000509"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 16288px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000510"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 16320px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000511"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 16352px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000512"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 16384px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000513"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 16416px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000514"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 16448px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000515"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 16480px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000516"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 16512px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000517"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 16544px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000518"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 16576px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000519"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 16608px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000520"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 16640px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000521"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 16672px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000522"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 16704px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000523"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 16736px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000524"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 16768px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000525"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 16800px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000526"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 16832px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000527"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 16864px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000528"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 16896px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000529"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 16928px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000530"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 16960px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000531"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 16992px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000532"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 17024px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000533"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 17056px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000534"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 17088px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000535"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 17120px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000536"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 17152px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000537"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 17184px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000538"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 17216px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000539"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 17248px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000540"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 17280px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000541"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 17312px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000542"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 17344px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000543"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 17376px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000544"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 17408px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000545"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 17440px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000546"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 17472px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000547"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 17504px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000548"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 17536px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000549"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 17568px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000550"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 17600px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000551"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 17632px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000552"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 17664px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000553"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 17696px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000554"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 17728px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000555"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 17760px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000556"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 17792px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000557"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 17824px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000558"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 17856px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000559"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 17888px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000560"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 17920px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000561"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 17952px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000562"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 17984px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000563"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 18016px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000564"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 18048px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000565"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 18080px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000566"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 18112px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000567"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 18144px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000568"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 18176px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000569"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 18208px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000570"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 18240px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000571"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 18272px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000572"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 18304px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000573"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 18336px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000574"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 18368px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000575"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 18400px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000576"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 18432px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000577"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 18464px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000578"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 18496px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000579"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 18528px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000580"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 18560px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000581"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 18592px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000582"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 18624px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000583"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 18656px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000584"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 18688px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000585"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 18720px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000586"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 18752px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000587"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 18784px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000588"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 18816px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000589"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 18848px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000590"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 18880px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000591"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 18912px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000592"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 18944px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000593"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 18976px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000594"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 19008px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000595"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 19040px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000596"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 19072px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000597"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 19104px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000598"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 19136px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000599"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 19168px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000600"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 19200px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000601"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 19232px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000602"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 19264px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000603"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 19296px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000604"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 19328px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000605"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 19360px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000606"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 19392px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000607"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 19424px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000608"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 19456px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000609"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 19488px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000610"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 19520px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000611"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 19552px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000612"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 19584px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000613"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 19616px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000614"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 19648px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000615"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 19680px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000616"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 19712px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000617"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 19744px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000618"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 19776px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000619"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 19808px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000620"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 19840px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000621"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 19872px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000622"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 19904px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000623"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 19936px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000624"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 19968px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000625"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 20000px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000626"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 20032px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000627"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 20064px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000628"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 20096px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000629"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 20128px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000630"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 20160px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000631"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 20192px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000632"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 20224px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000633"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 20256px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000634"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 20288px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000635"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 20320px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000636"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 20352px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000637"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 20384px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000638"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 20416px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000639"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 20448px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000640"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 20480px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000641"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 20512px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000642"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 20544px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000643"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 20576px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000644"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 20608px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000645"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 20640px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000646"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 20672px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000647"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 20704px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000648"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 20736px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000649"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 20768px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000650"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 20800px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000651"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 20832px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000652"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 20864px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000653"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 20896px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000654"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 20928px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000655"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 20960px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000656"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 20992px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000657"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 21024px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000658"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 21056px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000659"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 21088px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000660"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 21120px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000661"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 21152px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000662"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 21184px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000663"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 21216px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000664"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 21248px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000665"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 21280px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000666"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 21312px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000667"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 21344px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000668"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 21376px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000669"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 21408px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000670"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 21440px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000671"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 21472px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000672"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 21504px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000673"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 21536px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000674"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 21568px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000675"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 21600px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000676"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 21632px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000677"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 21664px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000678"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 21696px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000679"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 21728px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000680"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 21760px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000681"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 21792px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000682"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 21824px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000683"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 21856px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000684"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 21888px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000685"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 21920px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000686"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 21952px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000687"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 21984px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000688"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 22016px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000689"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 22048px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000690"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 22080px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000691"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 22112px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000692"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 22144px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000693"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 22176px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000694"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 22208px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000695"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 22240px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000696"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 22272px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000697"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 22304px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000698"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 22336px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000699"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 22368px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000700"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 22400px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000701"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 22432px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000702"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 22464px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000703"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 22496px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000704"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 22528px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000705"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 22560px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000706"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 22592px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000707"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 22624px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000708"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 22656px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000709"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 22688px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000710"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 22720px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000711"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 22752px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000712"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 22784px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000713"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 22816px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000714"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 22848px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000715"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 22880px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000716"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 22912px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000717"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 22944px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000718"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 22976px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000719"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 23008px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000720"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 23040px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000721"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 23072px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000722"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 23104px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000723"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 23136px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000724"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 23168px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000725"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 23200px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000726"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 23232px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000727"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 23264px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000728"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 23296px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000729"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 23328px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000730"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 23360px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000731"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 23392px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000732"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 23424px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000733"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 23456px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000734"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 23488px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000735"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 23520px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000736"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 23552px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000737"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 23584px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000738"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 23616px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000739"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 23648px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000740"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 23680px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000741"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 23712px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000742"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 23744px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000743"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 23776px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000744"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 23808px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000745"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 23840px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000746"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 23872px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000747"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 23904px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000748"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 23936px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000749"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 23968px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000750"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 24000px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000751"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 24032px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000752"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 24064px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000753"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 24096px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000754"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 24128px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000755"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 24160px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000756"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 24192px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000757"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 24224px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000758"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 24256px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000759"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 24288px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000760"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 24320px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000761"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 24352px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000762"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 24384px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000763"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 24416px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000764"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 24448px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000765"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 24480px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000766"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 24512px)!important;}[data-poly-morph-model="webgl-morphtargets"] [data-poly-morph-leaf="leaf-polygon-000767"]{background-position-x:calc(var(--polycss-morph-targets-lighting-x,0px) - 24544px)!important;} diff --git a/website/public/morph/morph-targets/runtime.json b/website/public/morph/morph-targets/runtime.json new file mode 100644 index 00000000..1159af4d --- /dev/null +++ b/website/public/morph/morph-targets/runtime.json @@ -0,0 +1 @@ +{"animations":[],"budgets":{"maxBytes":256000000,"maxFrames":16,"maxJoints":1,"maxLeaves":800,"maxPolygons":800,"maxResources":128,"maxVertices":512},"capabilities":["morph-targets","retained-render","sparse-updates"],"controls":[],"deformation":{"kind":"morph-regions","targets":[{"deltas":[{"normal":null,"position":[-42.2649741173,42.2649741173,-42.2649741173],"vertexIndex":0},{"normal":null,"position":[-36.2622559071,36.2622559071,-31.698730588],"vertexIndex":1},{"normal":null,"position":[-32.2996795177,32.2996795177,-21.1324870586],"vertexIndex":2},{"normal":null,"position":[-30.0297677517,30.0297677517,-10.5662435293],"vertexIndex":3},{"normal":null,"position":[-29.2893230915,29.2893230915,0],"vertexIndex":4},{"normal":null,"position":[-30.0297677517,30.0297677517,10.5662435293],"vertexIndex":5},{"normal":null,"position":[-32.2996795177,32.2996795177,21.1324870586],"vertexIndex":6},{"normal":null,"position":[-36.2622559071,36.2622559071,31.698730588],"vertexIndex":7},{"normal":null,"position":[-42.2649741173,42.2649741173,42.2649741173],"vertexIndex":8},{"normal":null,"position":[-36.2622559071,31.698730588,-36.2622559071],"vertexIndex":9},{"normal":null,"position":[-26.313585043,27.1966934204,-27.1966934204],"vertexIndex":10},{"normal":null,"position":[-19.9609458447,24.2247581482,-18.1311279535],"vertexIndex":11},{"normal":null,"position":[-16.3806974888,22.5223243237,-9.0655639768],"vertexIndex":12},{"normal":null,"position":[-15.220874548,21.9669938087,0],"vertexIndex":13},{"normal":null,"position":[-16.3806974888,22.5223243237,9.0655639768],"vertexIndex":14},{"normal":null,"position":[-19.9609458447,24.2247581482,18.1311279535],"vertexIndex":15},{"normal":null,"position":[-26.313585043,27.1966934204,27.1966934204],"vertexIndex":16},{"normal":null,"position":[-36.2622559071,31.698730588,36.2622559071],"vertexIndex":17},{"normal":null,"position":[-32.2996795177,21.1324870586,-32.2996795177],"vertexIndex":18},{"normal":null,"position":[-19.9609458447,18.1311279535,-24.2247581482],"vertexIndex":19},{"normal":null,"position":[-12.2028827667,16.1498397589,-16.1498397589],"vertexIndex":20},{"normal":null,"position":[-7.8610658646,15.0148838758,-8.0749198794],"vertexIndex":21},{"normal":null,"position":[-6.4585626125,14.6446615458,0],"vertexIndex":22},{"normal":null,"position":[-7.8610658646,15.0148838758,8.0749198794],"vertexIndex":23},{"normal":null,"position":[-12.2028827667,16.1498397589,16.1498397589],"vertexIndex":24},{"normal":null,"position":[-19.9609458447,18.1311279535,24.2247581482],"vertexIndex":25},{"normal":null,"position":[-32.2996795177,21.1324870586,32.2996795177],"vertexIndex":26},{"normal":null,"position":[-30.0297677517,10.5662435293,-30.0297677517],"vertexIndex":27},{"normal":null,"position":[-16.3806974888,9.0655639768,-22.5223243237],"vertexIndex":28},{"normal":null,"position":[-7.8610658646,8.0749198794,-15.0148838758],"vertexIndex":29},{"normal":null,"position":[-3.1081974506,7.5074419379,-7.5074419379],"vertexIndex":30},{"normal":null,"position":[-1.5749037266,7.3223307729,0],"vertexIndex":31},{"normal":null,"position":[-3.1081974506,7.5074419379,7.5074419379],"vertexIndex":32},{"normal":null,"position":[-7.8610658646,8.0749198794,15.0148838758],"vertexIndex":33},{"normal":null,"position":[-16.3806974888,9.0655639768,22.5223243237],"vertexIndex":34},{"normal":null,"position":[-30.0297677517,10.5662435293,30.0297677517],"vertexIndex":35},{"normal":null,"position":[-29.2893230915,0,-29.2893230915],"vertexIndex":36},{"normal":null,"position":[-15.220874548,0,-21.9669938087],"vertexIndex":37},{"normal":null,"position":[-6.4585626125,0,-14.6446615458],"vertexIndex":38},{"normal":null,"position":[-1.5749037266,0,-7.3223307729],"vertexIndex":39},{"normal":null,"position":[-1.5749037266,0,7.3223307729],"vertexIndex":41},{"normal":null,"position":[-6.4585626125,0,14.6446615458],"vertexIndex":42},{"normal":null,"position":[-15.220874548,0,21.9669938087],"vertexIndex":43},{"normal":null,"position":[-29.2893230915,0,29.2893230915],"vertexIndex":44},{"normal":null,"position":[-30.0297677517,-10.5662435293,-30.0297677517],"vertexIndex":45},{"normal":null,"position":[-16.3806974888,-9.0655639768,-22.5223243237],"vertexIndex":46},{"normal":null,"position":[-7.8610658646,-8.0749198794,-15.0148838758],"vertexIndex":47},{"normal":null,"position":[-3.1081974506,-7.5074419379,-7.5074419379],"vertexIndex":48},{"normal":null,"position":[-1.5749037266,-7.3223307729,0],"vertexIndex":49},{"normal":null,"position":[-3.1081974506,-7.5074419379,7.5074419379],"vertexIndex":50},{"normal":null,"position":[-7.8610658646,-8.0749198794,15.0148838758],"vertexIndex":51},{"normal":null,"position":[-16.3806974888,-9.0655639768,22.5223243237],"vertexIndex":52},{"normal":null,"position":[-30.0297677517,-10.5662435293,30.0297677517],"vertexIndex":53},{"normal":null,"position":[-32.2996795177,-21.1324870586,-32.2996795177],"vertexIndex":54},{"normal":null,"position":[-19.9609458447,-18.1311279535,-24.2247581482],"vertexIndex":55},{"normal":null,"position":[-12.2028827667,-16.1498397589,-16.1498397589],"vertexIndex":56},{"normal":null,"position":[-7.8610658646,-15.0148838758,-8.0749198794],"vertexIndex":57},{"normal":null,"position":[-6.4585626125,-14.6446615458,0],"vertexIndex":58},{"normal":null,"position":[-7.8610658646,-15.0148838758,8.0749198794],"vertexIndex":59},{"normal":null,"position":[-12.2028827667,-16.1498397589,16.1498397589],"vertexIndex":60},{"normal":null,"position":[-19.9609458447,-18.1311279535,24.2247581482],"vertexIndex":61},{"normal":null,"position":[-32.2996795177,-21.1324870586,32.2996795177],"vertexIndex":62},{"normal":null,"position":[-36.2622559071,-31.698730588,-36.2622559071],"vertexIndex":63},{"normal":null,"position":[-26.313585043,-27.1966934204,-27.1966934204],"vertexIndex":64},{"normal":null,"position":[-19.9609458447,-24.2247581482,-18.1311279535],"vertexIndex":65},{"normal":null,"position":[-16.3806974888,-22.5223243237,-9.0655639768],"vertexIndex":66},{"normal":null,"position":[-15.220874548,-21.9669938087,0],"vertexIndex":67},{"normal":null,"position":[-16.3806974888,-22.5223243237,9.0655639768],"vertexIndex":68},{"normal":null,"position":[-19.9609458447,-24.2247581482,18.1311279535],"vertexIndex":69},{"normal":null,"position":[-26.313585043,-27.1966934204,27.1966934204],"vertexIndex":70},{"normal":null,"position":[-36.2622559071,-31.698730588,36.2622559071],"vertexIndex":71},{"normal":null,"position":[-42.2649741173,-42.2649741173,-42.2649741173],"vertexIndex":72},{"normal":null,"position":[-36.2622559071,-36.2622559071,-31.698730588],"vertexIndex":73},{"normal":null,"position":[-32.2996795177,-32.2996795177,-21.1324870586],"vertexIndex":74},{"normal":null,"position":[-30.0297677517,-30.0297677517,-10.5662435293],"vertexIndex":75},{"normal":null,"position":[-29.2893230915,-29.2893230915,0],"vertexIndex":76},{"normal":null,"position":[-30.0297677517,-30.0297677517,10.5662435293],"vertexIndex":77},{"normal":null,"position":[-32.2996795177,-32.2996795177,21.1324870586],"vertexIndex":78},{"normal":null,"position":[-36.2622559071,-36.2622559071,31.698730588],"vertexIndex":79},{"normal":null,"position":[-42.2649741173,-42.2649741173,42.2649741173],"vertexIndex":80},{"normal":null,"position":[42.2649741173,42.2649741173,42.2649741173],"vertexIndex":81},{"normal":null,"position":[36.2622559071,36.2622559071,31.698730588],"vertexIndex":82},{"normal":null,"position":[32.2996795177,32.2996795177,21.1324870586],"vertexIndex":83},{"normal":null,"position":[30.0297677517,30.0297677517,10.5662435293],"vertexIndex":84},{"normal":null,"position":[29.2893230915,29.2893230915,0],"vertexIndex":85},{"normal":null,"position":[30.0297677517,30.0297677517,-10.5662435293],"vertexIndex":86},{"normal":null,"position":[32.2996795177,32.2996795177,-21.1324870586],"vertexIndex":87},{"normal":null,"position":[36.2622559071,36.2622559071,-31.698730588],"vertexIndex":88},{"normal":null,"position":[42.2649741173,42.2649741173,-42.2649741173],"vertexIndex":89},{"normal":null,"position":[36.2622559071,31.698730588,36.2622559071],"vertexIndex":90},{"normal":null,"position":[26.313585043,27.1966934204,27.1966934204],"vertexIndex":91},{"normal":null,"position":[19.9609458447,24.2247581482,18.1311279535],"vertexIndex":92},{"normal":null,"position":[16.3806974888,22.5223243237,9.0655639768],"vertexIndex":93},{"normal":null,"position":[15.220874548,21.9669938087,0],"vertexIndex":94},{"normal":null,"position":[16.3806974888,22.5223243237,-9.0655639768],"vertexIndex":95},{"normal":null,"position":[19.9609458447,24.2247581482,-18.1311279535],"vertexIndex":96},{"normal":null,"position":[26.313585043,27.1966934204,-27.1966934204],"vertexIndex":97},{"normal":null,"position":[36.2622559071,31.698730588,-36.2622559071],"vertexIndex":98},{"normal":null,"position":[32.2996795177,21.1324870586,32.2996795177],"vertexIndex":99},{"normal":null,"position":[19.9609458447,18.1311279535,24.2247581482],"vertexIndex":100},{"normal":null,"position":[12.2028827667,16.1498397589,16.1498397589],"vertexIndex":101},{"normal":null,"position":[7.8610658646,15.0148838758,8.0749198794],"vertexIndex":102},{"normal":null,"position":[6.4585626125,14.6446615458,0],"vertexIndex":103},{"normal":null,"position":[7.8610658646,15.0148838758,-8.0749198794],"vertexIndex":104},{"normal":null,"position":[12.2028827667,16.1498397589,-16.1498397589],"vertexIndex":105},{"normal":null,"position":[19.9609458447,18.1311279535,-24.2247581482],"vertexIndex":106},{"normal":null,"position":[32.2996795177,21.1324870586,-32.2996795177],"vertexIndex":107},{"normal":null,"position":[30.0297677517,10.5662435293,30.0297677517],"vertexIndex":108},{"normal":null,"position":[16.3806974888,9.0655639768,22.5223243237],"vertexIndex":109},{"normal":null,"position":[7.8610658646,8.0749198794,15.0148838758],"vertexIndex":110},{"normal":null,"position":[3.1081974506,7.5074419379,7.5074419379],"vertexIndex":111},{"normal":null,"position":[1.5749037266,7.3223307729,0],"vertexIndex":112},{"normal":null,"position":[3.1081974506,7.5074419379,-7.5074419379],"vertexIndex":113},{"normal":null,"position":[7.8610658646,8.0749198794,-15.0148838758],"vertexIndex":114},{"normal":null,"position":[16.3806974888,9.0655639768,-22.5223243237],"vertexIndex":115},{"normal":null,"position":[30.0297677517,10.5662435293,-30.0297677517],"vertexIndex":116},{"normal":null,"position":[29.2893230915,0,29.2893230915],"vertexIndex":117},{"normal":null,"position":[15.220874548,0,21.9669938087],"vertexIndex":118},{"normal":null,"position":[6.4585626125,0,14.6446615458],"vertexIndex":119},{"normal":null,"position":[1.5749037266,0,7.3223307729],"vertexIndex":120},{"normal":null,"position":[1.5749037266,0,-7.3223307729],"vertexIndex":122},{"normal":null,"position":[6.4585626125,0,-14.6446615458],"vertexIndex":123},{"normal":null,"position":[15.220874548,0,-21.9669938087],"vertexIndex":124},{"normal":null,"position":[29.2893230915,0,-29.2893230915],"vertexIndex":125},{"normal":null,"position":[30.0297677517,-10.5662435293,30.0297677517],"vertexIndex":126},{"normal":null,"position":[16.3806974888,-9.0655639768,22.5223243237],"vertexIndex":127},{"normal":null,"position":[7.8610658646,-8.0749198794,15.0148838758],"vertexIndex":128},{"normal":null,"position":[3.1081974506,-7.5074419379,7.5074419379],"vertexIndex":129},{"normal":null,"position":[1.5749037266,-7.3223307729,0],"vertexIndex":130},{"normal":null,"position":[3.1081974506,-7.5074419379,-7.5074419379],"vertexIndex":131},{"normal":null,"position":[7.8610658646,-8.0749198794,-15.0148838758],"vertexIndex":132},{"normal":null,"position":[16.3806974888,-9.0655639768,-22.5223243237],"vertexIndex":133},{"normal":null,"position":[30.0297677517,-10.5662435293,-30.0297677517],"vertexIndex":134},{"normal":null,"position":[32.2996795177,-21.1324870586,32.2996795177],"vertexIndex":135},{"normal":null,"position":[19.9609458447,-18.1311279535,24.2247581482],"vertexIndex":136},{"normal":null,"position":[12.2028827667,-16.1498397589,16.1498397589],"vertexIndex":137},{"normal":null,"position":[7.8610658646,-15.0148838758,8.0749198794],"vertexIndex":138},{"normal":null,"position":[6.4585626125,-14.6446615458,0],"vertexIndex":139},{"normal":null,"position":[7.8610658646,-15.0148838758,-8.0749198794],"vertexIndex":140},{"normal":null,"position":[12.2028827667,-16.1498397589,-16.1498397589],"vertexIndex":141},{"normal":null,"position":[19.9609458447,-18.1311279535,-24.2247581482],"vertexIndex":142},{"normal":null,"position":[32.2996795177,-21.1324870586,-32.2996795177],"vertexIndex":143},{"normal":null,"position":[36.2622559071,-31.698730588,36.2622559071],"vertexIndex":144},{"normal":null,"position":[26.313585043,-27.1966934204,27.1966934204],"vertexIndex":145},{"normal":null,"position":[19.9609458447,-24.2247581482,18.1311279535],"vertexIndex":146},{"normal":null,"position":[16.3806974888,-22.5223243237,9.0655639768],"vertexIndex":147},{"normal":null,"position":[15.220874548,-21.9669938087,0],"vertexIndex":148},{"normal":null,"position":[16.3806974888,-22.5223243237,-9.0655639768],"vertexIndex":149},{"normal":null,"position":[19.9609458447,-24.2247581482,-18.1311279535],"vertexIndex":150},{"normal":null,"position":[26.313585043,-27.1966934204,-27.1966934204],"vertexIndex":151},{"normal":null,"position":[36.2622559071,-31.698730588,-36.2622559071],"vertexIndex":152},{"normal":null,"position":[42.2649741173,-42.2649741173,42.2649741173],"vertexIndex":153},{"normal":null,"position":[36.2622559071,-36.2622559071,31.698730588],"vertexIndex":154},{"normal":null,"position":[32.2996795177,-32.2996795177,21.1324870586],"vertexIndex":155},{"normal":null,"position":[30.0297677517,-30.0297677517,10.5662435293],"vertexIndex":156},{"normal":null,"position":[29.2893230915,-29.2893230915,0],"vertexIndex":157},{"normal":null,"position":[30.0297677517,-30.0297677517,-10.5662435293],"vertexIndex":158},{"normal":null,"position":[32.2996795177,-32.2996795177,-21.1324870586],"vertexIndex":159},{"normal":null,"position":[36.2622559071,-36.2622559071,-31.698730588],"vertexIndex":160},{"normal":null,"position":[42.2649741173,-42.2649741173,-42.2649741173],"vertexIndex":161},{"normal":null,"position":[42.2649741173,42.2649741173,42.2649741173],"vertexIndex":162},{"normal":null,"position":[31.698730588,36.2622559071,36.2622559071],"vertexIndex":163},{"normal":null,"position":[21.1324870586,32.2996795177,32.2996795177],"vertexIndex":164},{"normal":null,"position":[10.5662435293,30.0297677517,30.0297677517],"vertexIndex":165},{"normal":null,"position":[0,29.2893230915,29.2893230915],"vertexIndex":166},{"normal":null,"position":[-10.5662435293,30.0297677517,30.0297677517],"vertexIndex":167},{"normal":null,"position":[-21.1324870586,32.2996795177,32.2996795177],"vertexIndex":168},{"normal":null,"position":[-31.698730588,36.2622559071,36.2622559071],"vertexIndex":169},{"normal":null,"position":[-42.2649741173,42.2649741173,42.2649741173],"vertexIndex":170},{"normal":null,"position":[36.2622559071,36.2622559071,31.698730588],"vertexIndex":171},{"normal":null,"position":[27.1966934204,26.313585043,27.1966934204],"vertexIndex":172},{"normal":null,"position":[18.1311279535,19.9609458447,24.2247581482],"vertexIndex":173},{"normal":null,"position":[9.0655639768,16.3806974888,22.5223243237],"vertexIndex":174},{"normal":null,"position":[0,15.220874548,21.9669938087],"vertexIndex":175},{"normal":null,"position":[-9.0655639768,16.3806974888,22.5223243237],"vertexIndex":176},{"normal":null,"position":[-18.1311279535,19.9609458447,24.2247581482],"vertexIndex":177},{"normal":null,"position":[-27.1966934204,26.313585043,27.1966934204],"vertexIndex":178},{"normal":null,"position":[-36.2622559071,36.2622559071,31.698730588],"vertexIndex":179},{"normal":null,"position":[32.2996795177,32.2996795177,21.1324870586],"vertexIndex":180},{"normal":null,"position":[24.2247581482,19.9609458447,18.1311279535],"vertexIndex":181},{"normal":null,"position":[16.1498397589,12.2028827667,16.1498397589],"vertexIndex":182},{"normal":null,"position":[8.0749198794,7.8610658646,15.0148838758],"vertexIndex":183},{"normal":null,"position":[0,6.4585626125,14.6446615458],"vertexIndex":184},{"normal":null,"position":[-8.0749198794,7.8610658646,15.0148838758],"vertexIndex":185},{"normal":null,"position":[-16.1498397589,12.2028827667,16.1498397589],"vertexIndex":186},{"normal":null,"position":[-24.2247581482,19.9609458447,18.1311279535],"vertexIndex":187},{"normal":null,"position":[-32.2996795177,32.2996795177,21.1324870586],"vertexIndex":188},{"normal":null,"position":[30.0297677517,30.0297677517,10.5662435293],"vertexIndex":189},{"normal":null,"position":[22.5223243237,16.3806974888,9.0655639768],"vertexIndex":190},{"normal":null,"position":[15.0148838758,7.8610658646,8.0749198794],"vertexIndex":191},{"normal":null,"position":[7.5074419379,3.1081974506,7.5074419379],"vertexIndex":192},{"normal":null,"position":[0,1.5749037266,7.3223307729],"vertexIndex":193},{"normal":null,"position":[-7.5074419379,3.1081974506,7.5074419379],"vertexIndex":194},{"normal":null,"position":[-15.0148838758,7.8610658646,8.0749198794],"vertexIndex":195},{"normal":null,"position":[-22.5223243237,16.3806974888,9.0655639768],"vertexIndex":196},{"normal":null,"position":[-30.0297677517,30.0297677517,10.5662435293],"vertexIndex":197},{"normal":null,"position":[29.2893230915,29.2893230915,0],"vertexIndex":198},{"normal":null,"position":[21.9669938087,15.220874548,0],"vertexIndex":199},{"normal":null,"position":[14.6446615458,6.4585626125,0],"vertexIndex":200},{"normal":null,"position":[7.3223307729,1.5749037266,0],"vertexIndex":201},{"normal":null,"position":[-7.3223307729,1.5749037266,0],"vertexIndex":203},{"normal":null,"position":[-14.6446615458,6.4585626125,0],"vertexIndex":204},{"normal":null,"position":[-21.9669938087,15.220874548,0],"vertexIndex":205},{"normal":null,"position":[-29.2893230915,29.2893230915,0],"vertexIndex":206},{"normal":null,"position":[30.0297677517,30.0297677517,-10.5662435293],"vertexIndex":207},{"normal":null,"position":[22.5223243237,16.3806974888,-9.0655639768],"vertexIndex":208},{"normal":null,"position":[15.0148838758,7.8610658646,-8.0749198794],"vertexIndex":209},{"normal":null,"position":[7.5074419379,3.1081974506,-7.5074419379],"vertexIndex":210},{"normal":null,"position":[0,1.5749037266,-7.3223307729],"vertexIndex":211},{"normal":null,"position":[-7.5074419379,3.1081974506,-7.5074419379],"vertexIndex":212},{"normal":null,"position":[-15.0148838758,7.8610658646,-8.0749198794],"vertexIndex":213},{"normal":null,"position":[-22.5223243237,16.3806974888,-9.0655639768],"vertexIndex":214},{"normal":null,"position":[-30.0297677517,30.0297677517,-10.5662435293],"vertexIndex":215},{"normal":null,"position":[32.2996795177,32.2996795177,-21.1324870586],"vertexIndex":216},{"normal":null,"position":[24.2247581482,19.9609458447,-18.1311279535],"vertexIndex":217},{"normal":null,"position":[16.1498397589,12.2028827667,-16.1498397589],"vertexIndex":218},{"normal":null,"position":[8.0749198794,7.8610658646,-15.0148838758],"vertexIndex":219},{"normal":null,"position":[0,6.4585626125,-14.6446615458],"vertexIndex":220},{"normal":null,"position":[-8.0749198794,7.8610658646,-15.0148838758],"vertexIndex":221},{"normal":null,"position":[-16.1498397589,12.2028827667,-16.1498397589],"vertexIndex":222},{"normal":null,"position":[-24.2247581482,19.9609458447,-18.1311279535],"vertexIndex":223},{"normal":null,"position":[-32.2996795177,32.2996795177,-21.1324870586],"vertexIndex":224},{"normal":null,"position":[36.2622559071,36.2622559071,-31.698730588],"vertexIndex":225},{"normal":null,"position":[27.1966934204,26.313585043,-27.1966934204],"vertexIndex":226},{"normal":null,"position":[18.1311279535,19.9609458447,-24.2247581482],"vertexIndex":227},{"normal":null,"position":[9.0655639768,16.3806974888,-22.5223243237],"vertexIndex":228},{"normal":null,"position":[0,15.220874548,-21.9669938087],"vertexIndex":229},{"normal":null,"position":[-9.0655639768,16.3806974888,-22.5223243237],"vertexIndex":230},{"normal":null,"position":[-18.1311279535,19.9609458447,-24.2247581482],"vertexIndex":231},{"normal":null,"position":[-27.1966934204,26.313585043,-27.1966934204],"vertexIndex":232},{"normal":null,"position":[-36.2622559071,36.2622559071,-31.698730588],"vertexIndex":233},{"normal":null,"position":[42.2649741173,42.2649741173,-42.2649741173],"vertexIndex":234},{"normal":null,"position":[31.698730588,36.2622559071,-36.2622559071],"vertexIndex":235},{"normal":null,"position":[21.1324870586,32.2996795177,-32.2996795177],"vertexIndex":236},{"normal":null,"position":[10.5662435293,30.0297677517,-30.0297677517],"vertexIndex":237},{"normal":null,"position":[0,29.2893230915,-29.2893230915],"vertexIndex":238},{"normal":null,"position":[-10.5662435293,30.0297677517,-30.0297677517],"vertexIndex":239},{"normal":null,"position":[-21.1324870586,32.2996795177,-32.2996795177],"vertexIndex":240},{"normal":null,"position":[-31.698730588,36.2622559071,-36.2622559071],"vertexIndex":241},{"normal":null,"position":[-42.2649741173,42.2649741173,-42.2649741173],"vertexIndex":242},{"normal":null,"position":[42.2649741173,-42.2649741173,-42.2649741173],"vertexIndex":243},{"normal":null,"position":[31.698730588,-36.2622559071,-36.2622559071],"vertexIndex":244},{"normal":null,"position":[21.1324870586,-32.2996795177,-32.2996795177],"vertexIndex":245},{"normal":null,"position":[10.5662435293,-30.0297677517,-30.0297677517],"vertexIndex":246},{"normal":null,"position":[0,-29.2893230915,-29.2893230915],"vertexIndex":247},{"normal":null,"position":[-10.5662435293,-30.0297677517,-30.0297677517],"vertexIndex":248},{"normal":null,"position":[-21.1324870586,-32.2996795177,-32.2996795177],"vertexIndex":249},{"normal":null,"position":[-31.698730588,-36.2622559071,-36.2622559071],"vertexIndex":250},{"normal":null,"position":[-42.2649741173,-42.2649741173,-42.2649741173],"vertexIndex":251},{"normal":null,"position":[36.2622559071,-36.2622559071,-31.698730588],"vertexIndex":252},{"normal":null,"position":[27.1966934204,-26.313585043,-27.1966934204],"vertexIndex":253},{"normal":null,"position":[18.1311279535,-19.9609458447,-24.2247581482],"vertexIndex":254},{"normal":null,"position":[9.0655639768,-16.3806974888,-22.5223243237],"vertexIndex":255},{"normal":null,"position":[0,-15.220874548,-21.9669938087],"vertexIndex":256},{"normal":null,"position":[-9.0655639768,-16.3806974888,-22.5223243237],"vertexIndex":257},{"normal":null,"position":[-18.1311279535,-19.9609458447,-24.2247581482],"vertexIndex":258},{"normal":null,"position":[-27.1966934204,-26.313585043,-27.1966934204],"vertexIndex":259},{"normal":null,"position":[-36.2622559071,-36.2622559071,-31.698730588],"vertexIndex":260},{"normal":null,"position":[32.2996795177,-32.2996795177,-21.1324870586],"vertexIndex":261},{"normal":null,"position":[24.2247581482,-19.9609458447,-18.1311279535],"vertexIndex":262},{"normal":null,"position":[16.1498397589,-12.2028827667,-16.1498397589],"vertexIndex":263},{"normal":null,"position":[8.0749198794,-7.8610658646,-15.0148838758],"vertexIndex":264},{"normal":null,"position":[0,-6.4585626125,-14.6446615458],"vertexIndex":265},{"normal":null,"position":[-8.0749198794,-7.8610658646,-15.0148838758],"vertexIndex":266},{"normal":null,"position":[-16.1498397589,-12.2028827667,-16.1498397589],"vertexIndex":267},{"normal":null,"position":[-24.2247581482,-19.9609458447,-18.1311279535],"vertexIndex":268},{"normal":null,"position":[-32.2996795177,-32.2996795177,-21.1324870586],"vertexIndex":269},{"normal":null,"position":[30.0297677517,-30.0297677517,-10.5662435293],"vertexIndex":270},{"normal":null,"position":[22.5223243237,-16.3806974888,-9.0655639768],"vertexIndex":271},{"normal":null,"position":[15.0148838758,-7.8610658646,-8.0749198794],"vertexIndex":272},{"normal":null,"position":[7.5074419379,-3.1081974506,-7.5074419379],"vertexIndex":273},{"normal":null,"position":[0,-1.5749037266,-7.3223307729],"vertexIndex":274},{"normal":null,"position":[-7.5074419379,-3.1081974506,-7.5074419379],"vertexIndex":275},{"normal":null,"position":[-15.0148838758,-7.8610658646,-8.0749198794],"vertexIndex":276},{"normal":null,"position":[-22.5223243237,-16.3806974888,-9.0655639768],"vertexIndex":277},{"normal":null,"position":[-30.0297677517,-30.0297677517,-10.5662435293],"vertexIndex":278},{"normal":null,"position":[29.2893230915,-29.2893230915,0],"vertexIndex":279},{"normal":null,"position":[21.9669938087,-15.220874548,0],"vertexIndex":280},{"normal":null,"position":[14.6446615458,-6.4585626125,0],"vertexIndex":281},{"normal":null,"position":[7.3223307729,-1.5749037266,0],"vertexIndex":282},{"normal":null,"position":[-7.3223307729,-1.5749037266,0],"vertexIndex":284},{"normal":null,"position":[-14.6446615458,-6.4585626125,0],"vertexIndex":285},{"normal":null,"position":[-21.9669938087,-15.220874548,0],"vertexIndex":286},{"normal":null,"position":[-29.2893230915,-29.2893230915,0],"vertexIndex":287},{"normal":null,"position":[30.0297677517,-30.0297677517,10.5662435293],"vertexIndex":288},{"normal":null,"position":[22.5223243237,-16.3806974888,9.0655639768],"vertexIndex":289},{"normal":null,"position":[15.0148838758,-7.8610658646,8.0749198794],"vertexIndex":290},{"normal":null,"position":[7.5074419379,-3.1081974506,7.5074419379],"vertexIndex":291},{"normal":null,"position":[0,-1.5749037266,7.3223307729],"vertexIndex":292},{"normal":null,"position":[-7.5074419379,-3.1081974506,7.5074419379],"vertexIndex":293},{"normal":null,"position":[-15.0148838758,-7.8610658646,8.0749198794],"vertexIndex":294},{"normal":null,"position":[-22.5223243237,-16.3806974888,9.0655639768],"vertexIndex":295},{"normal":null,"position":[-30.0297677517,-30.0297677517,10.5662435293],"vertexIndex":296},{"normal":null,"position":[32.2996795177,-32.2996795177,21.1324870586],"vertexIndex":297},{"normal":null,"position":[24.2247581482,-19.9609458447,18.1311279535],"vertexIndex":298},{"normal":null,"position":[16.1498397589,-12.2028827667,16.1498397589],"vertexIndex":299},{"normal":null,"position":[8.0749198794,-7.8610658646,15.0148838758],"vertexIndex":300},{"normal":null,"position":[0,-6.4585626125,14.6446615458],"vertexIndex":301},{"normal":null,"position":[-8.0749198794,-7.8610658646,15.0148838758],"vertexIndex":302},{"normal":null,"position":[-16.1498397589,-12.2028827667,16.1498397589],"vertexIndex":303},{"normal":null,"position":[-24.2247581482,-19.9609458447,18.1311279535],"vertexIndex":304},{"normal":null,"position":[-32.2996795177,-32.2996795177,21.1324870586],"vertexIndex":305},{"normal":null,"position":[36.2622559071,-36.2622559071,31.698730588],"vertexIndex":306},{"normal":null,"position":[27.1966934204,-26.313585043,27.1966934204],"vertexIndex":307},{"normal":null,"position":[18.1311279535,-19.9609458447,24.2247581482],"vertexIndex":308},{"normal":null,"position":[9.0655639768,-16.3806974888,22.5223243237],"vertexIndex":309},{"normal":null,"position":[0,-15.220874548,21.9669938087],"vertexIndex":310},{"normal":null,"position":[-9.0655639768,-16.3806974888,22.5223243237],"vertexIndex":311},{"normal":null,"position":[-18.1311279535,-19.9609458447,24.2247581482],"vertexIndex":312},{"normal":null,"position":[-27.1966934204,-26.313585043,27.1966934204],"vertexIndex":313},{"normal":null,"position":[-36.2622559071,-36.2622559071,31.698730588],"vertexIndex":314},{"normal":null,"position":[42.2649741173,-42.2649741173,42.2649741173],"vertexIndex":315},{"normal":null,"position":[31.698730588,-36.2622559071,36.2622559071],"vertexIndex":316},{"normal":null,"position":[21.1324870586,-32.2996795177,32.2996795177],"vertexIndex":317},{"normal":null,"position":[10.5662435293,-30.0297677517,30.0297677517],"vertexIndex":318},{"normal":null,"position":[0,-29.2893230915,29.2893230915],"vertexIndex":319},{"normal":null,"position":[-10.5662435293,-30.0297677517,30.0297677517],"vertexIndex":320},{"normal":null,"position":[-21.1324870586,-32.2996795177,32.2996795177],"vertexIndex":321},{"normal":null,"position":[-31.698730588,-36.2622559071,36.2622559071],"vertexIndex":322},{"normal":null,"position":[-42.2649741173,-42.2649741173,42.2649741173],"vertexIndex":323},{"normal":null,"position":[42.2649741173,42.2649741173,-42.2649741173],"vertexIndex":324},{"normal":null,"position":[31.698730588,36.2622559071,-36.2622559071],"vertexIndex":325},{"normal":null,"position":[21.1324870586,32.2996795177,-32.2996795177],"vertexIndex":326},{"normal":null,"position":[10.5662435293,30.0297677517,-30.0297677517],"vertexIndex":327},{"normal":null,"position":[0,29.2893230915,-29.2893230915],"vertexIndex":328},{"normal":null,"position":[-10.5662435293,30.0297677517,-30.0297677517],"vertexIndex":329},{"normal":null,"position":[-21.1324870586,32.2996795177,-32.2996795177],"vertexIndex":330},{"normal":null,"position":[-31.698730588,36.2622559071,-36.2622559071],"vertexIndex":331},{"normal":null,"position":[-42.2649741173,42.2649741173,-42.2649741173],"vertexIndex":332},{"normal":null,"position":[36.2622559071,31.698730588,-36.2622559071],"vertexIndex":333},{"normal":null,"position":[27.1966934204,27.1966934204,-26.313585043],"vertexIndex":334},{"normal":null,"position":[18.1311279535,24.2247581482,-19.9609458447],"vertexIndex":335},{"normal":null,"position":[9.0655639768,22.5223243237,-16.3806974888],"vertexIndex":336},{"normal":null,"position":[0,21.9669938087,-15.220874548],"vertexIndex":337},{"normal":null,"position":[-9.0655639768,22.5223243237,-16.3806974888],"vertexIndex":338},{"normal":null,"position":[-18.1311279535,24.2247581482,-19.9609458447],"vertexIndex":339},{"normal":null,"position":[-27.1966934204,27.1966934204,-26.313585043],"vertexIndex":340},{"normal":null,"position":[-36.2622559071,31.698730588,-36.2622559071],"vertexIndex":341},{"normal":null,"position":[32.2996795177,21.1324870586,-32.2996795177],"vertexIndex":342},{"normal":null,"position":[24.2247581482,18.1311279535,-19.9609458447],"vertexIndex":343},{"normal":null,"position":[16.1498397589,16.1498397589,-12.2028827667],"vertexIndex":344},{"normal":null,"position":[8.0749198794,15.0148838758,-7.8610658646],"vertexIndex":345},{"normal":null,"position":[0,14.6446615458,-6.4585626125],"vertexIndex":346},{"normal":null,"position":[-8.0749198794,15.0148838758,-7.8610658646],"vertexIndex":347},{"normal":null,"position":[-16.1498397589,16.1498397589,-12.2028827667],"vertexIndex":348},{"normal":null,"position":[-24.2247581482,18.1311279535,-19.9609458447],"vertexIndex":349},{"normal":null,"position":[-32.2996795177,21.1324870586,-32.2996795177],"vertexIndex":350},{"normal":null,"position":[30.0297677517,10.5662435293,-30.0297677517],"vertexIndex":351},{"normal":null,"position":[22.5223243237,9.0655639768,-16.3806974888],"vertexIndex":352},{"normal":null,"position":[15.0148838758,8.0749198794,-7.8610658646],"vertexIndex":353},{"normal":null,"position":[7.5074419379,7.5074419379,-3.1081974506],"vertexIndex":354},{"normal":null,"position":[0,7.3223307729,-1.5749037266],"vertexIndex":355},{"normal":null,"position":[-7.5074419379,7.5074419379,-3.1081974506],"vertexIndex":356},{"normal":null,"position":[-15.0148838758,8.0749198794,-7.8610658646],"vertexIndex":357},{"normal":null,"position":[-22.5223243237,9.0655639768,-16.3806974888],"vertexIndex":358},{"normal":null,"position":[-30.0297677517,10.5662435293,-30.0297677517],"vertexIndex":359},{"normal":null,"position":[29.2893230915,0,-29.2893230915],"vertexIndex":360},{"normal":null,"position":[21.9669938087,0,-15.220874548],"vertexIndex":361},{"normal":null,"position":[14.6446615458,0,-6.4585626125],"vertexIndex":362},{"normal":null,"position":[7.3223307729,0,-1.5749037266],"vertexIndex":363},{"normal":null,"position":[-7.3223307729,0,-1.5749037266],"vertexIndex":365},{"normal":null,"position":[-14.6446615458,0,-6.4585626125],"vertexIndex":366},{"normal":null,"position":[-21.9669938087,0,-15.220874548],"vertexIndex":367},{"normal":null,"position":[-29.2893230915,0,-29.2893230915],"vertexIndex":368},{"normal":null,"position":[30.0297677517,-10.5662435293,-30.0297677517],"vertexIndex":369},{"normal":null,"position":[22.5223243237,-9.0655639768,-16.3806974888],"vertexIndex":370},{"normal":null,"position":[15.0148838758,-8.0749198794,-7.8610658646],"vertexIndex":371},{"normal":null,"position":[7.5074419379,-7.5074419379,-3.1081974506],"vertexIndex":372},{"normal":null,"position":[0,-7.3223307729,-1.5749037266],"vertexIndex":373},{"normal":null,"position":[-7.5074419379,-7.5074419379,-3.1081974506],"vertexIndex":374},{"normal":null,"position":[-15.0148838758,-8.0749198794,-7.8610658646],"vertexIndex":375},{"normal":null,"position":[-22.5223243237,-9.0655639768,-16.3806974888],"vertexIndex":376},{"normal":null,"position":[-30.0297677517,-10.5662435293,-30.0297677517],"vertexIndex":377},{"normal":null,"position":[32.2996795177,-21.1324870586,-32.2996795177],"vertexIndex":378},{"normal":null,"position":[24.2247581482,-18.1311279535,-19.9609458447],"vertexIndex":379},{"normal":null,"position":[16.1498397589,-16.1498397589,-12.2028827667],"vertexIndex":380},{"normal":null,"position":[8.0749198794,-15.0148838758,-7.8610658646],"vertexIndex":381},{"normal":null,"position":[0,-14.6446615458,-6.4585626125],"vertexIndex":382},{"normal":null,"position":[-8.0749198794,-15.0148838758,-7.8610658646],"vertexIndex":383},{"normal":null,"position":[-16.1498397589,-16.1498397589,-12.2028827667],"vertexIndex":384},{"normal":null,"position":[-24.2247581482,-18.1311279535,-19.9609458447],"vertexIndex":385},{"normal":null,"position":[-32.2996795177,-21.1324870586,-32.2996795177],"vertexIndex":386},{"normal":null,"position":[36.2622559071,-31.698730588,-36.2622559071],"vertexIndex":387},{"normal":null,"position":[27.1966934204,-27.1966934204,-26.313585043],"vertexIndex":388},{"normal":null,"position":[18.1311279535,-24.2247581482,-19.9609458447],"vertexIndex":389},{"normal":null,"position":[9.0655639768,-22.5223243237,-16.3806974888],"vertexIndex":390},{"normal":null,"position":[0,-21.9669938087,-15.220874548],"vertexIndex":391},{"normal":null,"position":[-9.0655639768,-22.5223243237,-16.3806974888],"vertexIndex":392},{"normal":null,"position":[-18.1311279535,-24.2247581482,-19.9609458447],"vertexIndex":393},{"normal":null,"position":[-27.1966934204,-27.1966934204,-26.313585043],"vertexIndex":394},{"normal":null,"position":[-36.2622559071,-31.698730588,-36.2622559071],"vertexIndex":395},{"normal":null,"position":[42.2649741173,-42.2649741173,-42.2649741173],"vertexIndex":396},{"normal":null,"position":[31.698730588,-36.2622559071,-36.2622559071],"vertexIndex":397},{"normal":null,"position":[21.1324870586,-32.2996795177,-32.2996795177],"vertexIndex":398},{"normal":null,"position":[10.5662435293,-30.0297677517,-30.0297677517],"vertexIndex":399},{"normal":null,"position":[0,-29.2893230915,-29.2893230915],"vertexIndex":400},{"normal":null,"position":[-10.5662435293,-30.0297677517,-30.0297677517],"vertexIndex":401},{"normal":null,"position":[-21.1324870586,-32.2996795177,-32.2996795177],"vertexIndex":402},{"normal":null,"position":[-31.698730588,-36.2622559071,-36.2622559071],"vertexIndex":403},{"normal":null,"position":[-42.2649741173,-42.2649741173,-42.2649741173],"vertexIndex":404},{"normal":null,"position":[-42.2649741173,42.2649741173,42.2649741173],"vertexIndex":405},{"normal":null,"position":[-31.698730588,36.2622559071,36.2622559071],"vertexIndex":406},{"normal":null,"position":[-21.1324870586,32.2996795177,32.2996795177],"vertexIndex":407},{"normal":null,"position":[-10.5662435293,30.0297677517,30.0297677517],"vertexIndex":408},{"normal":null,"position":[0,29.2893230915,29.2893230915],"vertexIndex":409},{"normal":null,"position":[10.5662435293,30.0297677517,30.0297677517],"vertexIndex":410},{"normal":null,"position":[21.1324870586,32.2996795177,32.2996795177],"vertexIndex":411},{"normal":null,"position":[31.698730588,36.2622559071,36.2622559071],"vertexIndex":412},{"normal":null,"position":[42.2649741173,42.2649741173,42.2649741173],"vertexIndex":413},{"normal":null,"position":[-36.2622559071,31.698730588,36.2622559071],"vertexIndex":414},{"normal":null,"position":[-27.1966934204,27.1966934204,26.313585043],"vertexIndex":415},{"normal":null,"position":[-18.1311279535,24.2247581482,19.9609458447],"vertexIndex":416},{"normal":null,"position":[-9.0655639768,22.5223243237,16.3806974888],"vertexIndex":417},{"normal":null,"position":[0,21.9669938087,15.220874548],"vertexIndex":418},{"normal":null,"position":[9.0655639768,22.5223243237,16.3806974888],"vertexIndex":419},{"normal":null,"position":[18.1311279535,24.2247581482,19.9609458447],"vertexIndex":420},{"normal":null,"position":[27.1966934204,27.1966934204,26.313585043],"vertexIndex":421},{"normal":null,"position":[36.2622559071,31.698730588,36.2622559071],"vertexIndex":422},{"normal":null,"position":[-32.2996795177,21.1324870586,32.2996795177],"vertexIndex":423},{"normal":null,"position":[-24.2247581482,18.1311279535,19.9609458447],"vertexIndex":424},{"normal":null,"position":[-16.1498397589,16.1498397589,12.2028827667],"vertexIndex":425},{"normal":null,"position":[-8.0749198794,15.0148838758,7.8610658646],"vertexIndex":426},{"normal":null,"position":[0,14.6446615458,6.4585626125],"vertexIndex":427},{"normal":null,"position":[8.0749198794,15.0148838758,7.8610658646],"vertexIndex":428},{"normal":null,"position":[16.1498397589,16.1498397589,12.2028827667],"vertexIndex":429},{"normal":null,"position":[24.2247581482,18.1311279535,19.9609458447],"vertexIndex":430},{"normal":null,"position":[32.2996795177,21.1324870586,32.2996795177],"vertexIndex":431},{"normal":null,"position":[-30.0297677517,10.5662435293,30.0297677517],"vertexIndex":432},{"normal":null,"position":[-22.5223243237,9.0655639768,16.3806974888],"vertexIndex":433},{"normal":null,"position":[-15.0148838758,8.0749198794,7.8610658646],"vertexIndex":434},{"normal":null,"position":[-7.5074419379,7.5074419379,3.1081974506],"vertexIndex":435},{"normal":null,"position":[0,7.3223307729,1.5749037266],"vertexIndex":436},{"normal":null,"position":[7.5074419379,7.5074419379,3.1081974506],"vertexIndex":437},{"normal":null,"position":[15.0148838758,8.0749198794,7.8610658646],"vertexIndex":438},{"normal":null,"position":[22.5223243237,9.0655639768,16.3806974888],"vertexIndex":439},{"normal":null,"position":[30.0297677517,10.5662435293,30.0297677517],"vertexIndex":440},{"normal":null,"position":[-29.2893230915,0,29.2893230915],"vertexIndex":441},{"normal":null,"position":[-21.9669938087,0,15.220874548],"vertexIndex":442},{"normal":null,"position":[-14.6446615458,0,6.4585626125],"vertexIndex":443},{"normal":null,"position":[-7.3223307729,0,1.5749037266],"vertexIndex":444},{"normal":null,"position":[7.3223307729,0,1.5749037266],"vertexIndex":446},{"normal":null,"position":[14.6446615458,0,6.4585626125],"vertexIndex":447},{"normal":null,"position":[21.9669938087,0,15.220874548],"vertexIndex":448},{"normal":null,"position":[29.2893230915,0,29.2893230915],"vertexIndex":449},{"normal":null,"position":[-30.0297677517,-10.5662435293,30.0297677517],"vertexIndex":450},{"normal":null,"position":[-22.5223243237,-9.0655639768,16.3806974888],"vertexIndex":451},{"normal":null,"position":[-15.0148838758,-8.0749198794,7.8610658646],"vertexIndex":452},{"normal":null,"position":[-7.5074419379,-7.5074419379,3.1081974506],"vertexIndex":453},{"normal":null,"position":[0,-7.3223307729,1.5749037266],"vertexIndex":454},{"normal":null,"position":[7.5074419379,-7.5074419379,3.1081974506],"vertexIndex":455},{"normal":null,"position":[15.0148838758,-8.0749198794,7.8610658646],"vertexIndex":456},{"normal":null,"position":[22.5223243237,-9.0655639768,16.3806974888],"vertexIndex":457},{"normal":null,"position":[30.0297677517,-10.5662435293,30.0297677517],"vertexIndex":458},{"normal":null,"position":[-32.2996795177,-21.1324870586,32.2996795177],"vertexIndex":459},{"normal":null,"position":[-24.2247581482,-18.1311279535,19.9609458447],"vertexIndex":460},{"normal":null,"position":[-16.1498397589,-16.1498397589,12.2028827667],"vertexIndex":461},{"normal":null,"position":[-8.0749198794,-15.0148838758,7.8610658646],"vertexIndex":462},{"normal":null,"position":[0,-14.6446615458,6.4585626125],"vertexIndex":463},{"normal":null,"position":[8.0749198794,-15.0148838758,7.8610658646],"vertexIndex":464},{"normal":null,"position":[16.1498397589,-16.1498397589,12.2028827667],"vertexIndex":465},{"normal":null,"position":[24.2247581482,-18.1311279535,19.9609458447],"vertexIndex":466},{"normal":null,"position":[32.2996795177,-21.1324870586,32.2996795177],"vertexIndex":467},{"normal":null,"position":[-36.2622559071,-31.698730588,36.2622559071],"vertexIndex":468},{"normal":null,"position":[-27.1966934204,-27.1966934204,26.313585043],"vertexIndex":469},{"normal":null,"position":[-18.1311279535,-24.2247581482,19.9609458447],"vertexIndex":470},{"normal":null,"position":[-9.0655639768,-22.5223243237,16.3806974888],"vertexIndex":471},{"normal":null,"position":[0,-21.9669938087,15.220874548],"vertexIndex":472},{"normal":null,"position":[9.0655639768,-22.5223243237,16.3806974888],"vertexIndex":473},{"normal":null,"position":[18.1311279535,-24.2247581482,19.9609458447],"vertexIndex":474},{"normal":null,"position":[27.1966934204,-27.1966934204,26.313585043],"vertexIndex":475},{"normal":null,"position":[36.2622559071,-31.698730588,36.2622559071],"vertexIndex":476},{"normal":null,"position":[-42.2649741173,-42.2649741173,42.2649741173],"vertexIndex":477},{"normal":null,"position":[-31.698730588,-36.2622559071,36.2622559071],"vertexIndex":478},{"normal":null,"position":[-21.1324870586,-32.2996795177,32.2996795177],"vertexIndex":479},{"normal":null,"position":[-10.5662435293,-30.0297677517,30.0297677517],"vertexIndex":480},{"normal":null,"position":[0,-29.2893230915,29.2893230915],"vertexIndex":481},{"normal":null,"position":[10.5662435293,-30.0297677517,30.0297677517],"vertexIndex":482},{"normal":null,"position":[21.1324870586,-32.2996795177,32.2996795177],"vertexIndex":483},{"normal":null,"position":[31.698730588,-36.2622559071,36.2622559071],"vertexIndex":484},{"normal":null,"position":[42.2649741173,-42.2649741173,42.2649741173],"vertexIndex":485}],"id":"spherify"},{"deltas":[{"normal":null,"position":[100,200,0],"vertexIndex":0},{"normal":null,"position":[100,175,25],"vertexIndex":1},{"normal":null,"position":[100,150,50],"vertexIndex":2},{"normal":null,"position":[100,125,75],"vertexIndex":3},{"normal":null,"position":[100,100,100],"vertexIndex":4},{"normal":null,"position":[100,75,125],"vertexIndex":5},{"normal":null,"position":[100,50,150],"vertexIndex":6},{"normal":null,"position":[100,25,175],"vertexIndex":7},{"normal":null,"position":[100,0,200],"vertexIndex":8},{"normal":null,"position":[100,175,-25],"vertexIndex":9},{"normal":null,"position":[100,150,0],"vertexIndex":10},{"normal":null,"position":[100,125,25],"vertexIndex":11},{"normal":null,"position":[100,100,50],"vertexIndex":12},{"normal":null,"position":[100,75,75],"vertexIndex":13},{"normal":null,"position":[100,50,100],"vertexIndex":14},{"normal":null,"position":[100,25,125],"vertexIndex":15},{"normal":null,"position":[100,0,150],"vertexIndex":16},{"normal":null,"position":[100,-25,175],"vertexIndex":17},{"normal":null,"position":[100,150,-50],"vertexIndex":18},{"normal":null,"position":[100,125,-25],"vertexIndex":19},{"normal":null,"position":[100,100,0],"vertexIndex":20},{"normal":null,"position":[100,75,25],"vertexIndex":21},{"normal":null,"position":[100,50,50],"vertexIndex":22},{"normal":null,"position":[100,25,75],"vertexIndex":23},{"normal":null,"position":[100,0,100],"vertexIndex":24},{"normal":null,"position":[100,-25,125],"vertexIndex":25},{"normal":null,"position":[100,-50,150],"vertexIndex":26},{"normal":null,"position":[100,125,-75],"vertexIndex":27},{"normal":null,"position":[100,100,-50],"vertexIndex":28},{"normal":null,"position":[100,75,-25],"vertexIndex":29},{"normal":null,"position":[100,50,0],"vertexIndex":30},{"normal":null,"position":[100,25,25],"vertexIndex":31},{"normal":null,"position":[100,0,50],"vertexIndex":32},{"normal":null,"position":[100,-25,75],"vertexIndex":33},{"normal":null,"position":[100,-50,100],"vertexIndex":34},{"normal":null,"position":[100,-75,125],"vertexIndex":35},{"normal":null,"position":[100,100,-100],"vertexIndex":36},{"normal":null,"position":[100,75,-75],"vertexIndex":37},{"normal":null,"position":[100,50,-50],"vertexIndex":38},{"normal":null,"position":[100,25,-25],"vertexIndex":39},{"normal":null,"position":[100,0,0],"vertexIndex":40},{"normal":null,"position":[100,-25,25],"vertexIndex":41},{"normal":null,"position":[100,-50,50],"vertexIndex":42},{"normal":null,"position":[100,-75,75],"vertexIndex":43},{"normal":null,"position":[100,-100,100],"vertexIndex":44},{"normal":null,"position":[100,75,-125],"vertexIndex":45},{"normal":null,"position":[100,50,-100],"vertexIndex":46},{"normal":null,"position":[100,25,-75],"vertexIndex":47},{"normal":null,"position":[100,0,-50],"vertexIndex":48},{"normal":null,"position":[100,-25,-25],"vertexIndex":49},{"normal":null,"position":[100,-50,0],"vertexIndex":50},{"normal":null,"position":[100,-75,25],"vertexIndex":51},{"normal":null,"position":[100,-100,50],"vertexIndex":52},{"normal":null,"position":[100,-125,75],"vertexIndex":53},{"normal":null,"position":[100,50,-150],"vertexIndex":54},{"normal":null,"position":[100,25,-125],"vertexIndex":55},{"normal":null,"position":[100,0,-100],"vertexIndex":56},{"normal":null,"position":[100,-25,-75],"vertexIndex":57},{"normal":null,"position":[100,-50,-50],"vertexIndex":58},{"normal":null,"position":[100,-75,-25],"vertexIndex":59},{"normal":null,"position":[100,-100,0],"vertexIndex":60},{"normal":null,"position":[100,-125,25],"vertexIndex":61},{"normal":null,"position":[100,-150,50],"vertexIndex":62},{"normal":null,"position":[100,25,-175],"vertexIndex":63},{"normal":null,"position":[100,0,-150],"vertexIndex":64},{"normal":null,"position":[100,-25,-125],"vertexIndex":65},{"normal":null,"position":[100,-50,-100],"vertexIndex":66},{"normal":null,"position":[100,-75,-75],"vertexIndex":67},{"normal":null,"position":[100,-100,-50],"vertexIndex":68},{"normal":null,"position":[100,-125,-25],"vertexIndex":69},{"normal":null,"position":[100,-150,0],"vertexIndex":70},{"normal":null,"position":[100,-175,25],"vertexIndex":71},{"normal":null,"position":[100,0,-200],"vertexIndex":72},{"normal":null,"position":[100,-25,-175],"vertexIndex":73},{"normal":null,"position":[100,-50,-150],"vertexIndex":74},{"normal":null,"position":[100,-75,-125],"vertexIndex":75},{"normal":null,"position":[100,-100,-100],"vertexIndex":76},{"normal":null,"position":[100,-125,-75],"vertexIndex":77},{"normal":null,"position":[100,-150,-50],"vertexIndex":78},{"normal":null,"position":[100,-175,-25],"vertexIndex":79},{"normal":null,"position":[100,-200,0],"vertexIndex":80},{"normal":null,"position":[-100,200,0],"vertexIndex":81},{"normal":null,"position":[-100,175,-25],"vertexIndex":82},{"normal":null,"position":[-100,150,-50],"vertexIndex":83},{"normal":null,"position":[-100,125,-75],"vertexIndex":84},{"normal":null,"position":[-100,100,-100],"vertexIndex":85},{"normal":null,"position":[-100,75,-125],"vertexIndex":86},{"normal":null,"position":[-100,50,-150],"vertexIndex":87},{"normal":null,"position":[-100,25,-175],"vertexIndex":88},{"normal":null,"position":[-100,0,-200],"vertexIndex":89},{"normal":null,"position":[-100,175,25],"vertexIndex":90},{"normal":null,"position":[-100,150,0],"vertexIndex":91},{"normal":null,"position":[-100,125,-25],"vertexIndex":92},{"normal":null,"position":[-100,100,-50],"vertexIndex":93},{"normal":null,"position":[-100,75,-75],"vertexIndex":94},{"normal":null,"position":[-100,50,-100],"vertexIndex":95},{"normal":null,"position":[-100,25,-125],"vertexIndex":96},{"normal":null,"position":[-100,0,-150],"vertexIndex":97},{"normal":null,"position":[-100,-25,-175],"vertexIndex":98},{"normal":null,"position":[-100,150,50],"vertexIndex":99},{"normal":null,"position":[-100,125,25],"vertexIndex":100},{"normal":null,"position":[-100,100,0],"vertexIndex":101},{"normal":null,"position":[-100,75,-25],"vertexIndex":102},{"normal":null,"position":[-100,50,-50],"vertexIndex":103},{"normal":null,"position":[-100,25,-75],"vertexIndex":104},{"normal":null,"position":[-100,0,-100],"vertexIndex":105},{"normal":null,"position":[-100,-25,-125],"vertexIndex":106},{"normal":null,"position":[-100,-50,-150],"vertexIndex":107},{"normal":null,"position":[-100,125,75],"vertexIndex":108},{"normal":null,"position":[-100,100,50],"vertexIndex":109},{"normal":null,"position":[-100,75,25],"vertexIndex":110},{"normal":null,"position":[-100,50,0],"vertexIndex":111},{"normal":null,"position":[-100,25,-25],"vertexIndex":112},{"normal":null,"position":[-100,0,-50],"vertexIndex":113},{"normal":null,"position":[-100,-25,-75],"vertexIndex":114},{"normal":null,"position":[-100,-50,-100],"vertexIndex":115},{"normal":null,"position":[-100,-75,-125],"vertexIndex":116},{"normal":null,"position":[-100,100,100],"vertexIndex":117},{"normal":null,"position":[-100,75,75],"vertexIndex":118},{"normal":null,"position":[-100,50,50],"vertexIndex":119},{"normal":null,"position":[-100,25,25],"vertexIndex":120},{"normal":null,"position":[-100,0,0],"vertexIndex":121},{"normal":null,"position":[-100,-25,-25],"vertexIndex":122},{"normal":null,"position":[-100,-50,-50],"vertexIndex":123},{"normal":null,"position":[-100,-75,-75],"vertexIndex":124},{"normal":null,"position":[-100,-100,-100],"vertexIndex":125},{"normal":null,"position":[-100,75,125],"vertexIndex":126},{"normal":null,"position":[-100,50,100],"vertexIndex":127},{"normal":null,"position":[-100,25,75],"vertexIndex":128},{"normal":null,"position":[-100,0,50],"vertexIndex":129},{"normal":null,"position":[-100,-25,25],"vertexIndex":130},{"normal":null,"position":[-100,-50,0],"vertexIndex":131},{"normal":null,"position":[-100,-75,-25],"vertexIndex":132},{"normal":null,"position":[-100,-100,-50],"vertexIndex":133},{"normal":null,"position":[-100,-125,-75],"vertexIndex":134},{"normal":null,"position":[-100,50,150],"vertexIndex":135},{"normal":null,"position":[-100,25,125],"vertexIndex":136},{"normal":null,"position":[-100,0,100],"vertexIndex":137},{"normal":null,"position":[-100,-25,75],"vertexIndex":138},{"normal":null,"position":[-100,-50,50],"vertexIndex":139},{"normal":null,"position":[-100,-75,25],"vertexIndex":140},{"normal":null,"position":[-100,-100,0],"vertexIndex":141},{"normal":null,"position":[-100,-125,-25],"vertexIndex":142},{"normal":null,"position":[-100,-150,-50],"vertexIndex":143},{"normal":null,"position":[-100,25,175],"vertexIndex":144},{"normal":null,"position":[-100,0,150],"vertexIndex":145},{"normal":null,"position":[-100,-25,125],"vertexIndex":146},{"normal":null,"position":[-100,-50,100],"vertexIndex":147},{"normal":null,"position":[-100,-75,75],"vertexIndex":148},{"normal":null,"position":[-100,-100,50],"vertexIndex":149},{"normal":null,"position":[-100,-125,25],"vertexIndex":150},{"normal":null,"position":[-100,-150,0],"vertexIndex":151},{"normal":null,"position":[-100,-175,-25],"vertexIndex":152},{"normal":null,"position":[-100,0,200],"vertexIndex":153},{"normal":null,"position":[-100,-25,175],"vertexIndex":154},{"normal":null,"position":[-100,-50,150],"vertexIndex":155},{"normal":null,"position":[-100,-75,125],"vertexIndex":156},{"normal":null,"position":[-100,-100,100],"vertexIndex":157},{"normal":null,"position":[-100,-125,75],"vertexIndex":158},{"normal":null,"position":[-100,-150,50],"vertexIndex":159},{"normal":null,"position":[-100,-175,25],"vertexIndex":160},{"normal":null,"position":[-100,-200,0],"vertexIndex":161},{"normal":null,"position":[-100,200,0],"vertexIndex":162},{"normal":null,"position":[-75,154.1196107864,-30.6563019753],"vertexIndex":163},{"normal":null,"position":[-50,100,-41.421353817],"vertexIndex":164},{"normal":null,"position":[-25,45.8803892136,-30.6563019753],"vertexIndex":165},{"normal":null,"position":[25,-30.6563019753,45.8803892136],"vertexIndex":167},{"normal":null,"position":[50,-41.421353817,100],"vertexIndex":168},{"normal":null,"position":[75,-30.6563019753,154.1196107864],"vertexIndex":169},{"normal":null,"position":[100,0,200],"vertexIndex":170},{"normal":null,"position":[-100,175,-25],"vertexIndex":171},{"normal":null,"position":[-75,131.0226202011,-46.0892081261],"vertexIndex":172},{"normal":null,"position":[-50,82.3223292828,-48.7436890602],"vertexIndex":173},{"normal":null,"position":[-25,36.3133013248,-32.5593113899],"vertexIndex":174},{"normal":null,"position":[25,-21.0892081261,43.9773768187],"vertexIndex":176},{"normal":null,"position":[50,-23.7436890602,92.6776707172],"vertexIndex":177},{"normal":null,"position":[75,-7.5593113899,138.6867046356],"vertexIndex":178},{"normal":null,"position":[100,25,175],"vertexIndex":179},{"normal":null,"position":[-100,150,-50],"vertexIndex":180},{"normal":null,"position":[-75,107.9256296158,-61.5221261978],"vertexIndex":181},{"normal":null,"position":[-50,64.6446585655,-56.0660123825],"vertexIndex":182},{"normal":null,"position":[-25,26.7462193966,-34.4623208046],"vertexIndex":183},{"normal":null,"position":[25,-11.5221261978,42.074367404],"vertexIndex":185},{"normal":null,"position":[50,-6.0660123825,85.3553414345],"vertexIndex":186},{"normal":null,"position":[75,15.5376791954,123.2537746429],"vertexIndex":187},{"normal":null,"position":[100,50,150],"vertexIndex":188},{"normal":null,"position":[-100,125,-75],"vertexIndex":189},{"normal":null,"position":[-75,84.8286449909,-76.9550442696],"vertexIndex":190},{"normal":null,"position":[-50,46.9669938087,-63.3883476257],"vertexIndex":191},{"normal":null,"position":[-25,17.1791315079,-36.3653302193],"vertexIndex":192},{"normal":null,"position":[25,-1.9550442696,40.1713550091],"vertexIndex":194},{"normal":null,"position":[50,11.6116523743,78.0330061913],"vertexIndex":195},{"normal":null,"position":[75,38.6346697807,107.8208684921],"vertexIndex":196},{"normal":null,"position":[100,75,125],"vertexIndex":197},{"normal":null,"position":[-100,100,-100],"vertexIndex":198},{"normal":null,"position":[-75,61.7316603661,-92.3879504204],"vertexIndex":199},{"normal":null,"position":[-50,29.2893230915,-70.7106769085],"vertexIndex":200},{"normal":null,"position":[-25,7.6120495796,-38.2683426142],"vertexIndex":201},{"normal":null,"position":[25,7.6120495796,38.2683426142],"vertexIndex":203},{"normal":null,"position":[50,29.2893230915,70.7106769085],"vertexIndex":204},{"normal":null,"position":[75,61.7316603661,92.3879504204],"vertexIndex":205},{"normal":null,"position":[100,100,100],"vertexIndex":206},{"normal":null,"position":[-100,75,-125],"vertexIndex":207},{"normal":null,"position":[-75,38.6346697807,-107.8208684921],"vertexIndex":208},{"normal":null,"position":[-50,11.6116523743,-78.0330061913],"vertexIndex":209},{"normal":null,"position":[-25,-1.9550442696,-40.1713550091],"vertexIndex":210},{"normal":null,"position":[25,17.1791315079,36.3653302193],"vertexIndex":212},{"normal":null,"position":[50,46.9669938087,63.3883476257],"vertexIndex":213},{"normal":null,"position":[75,84.8286449909,76.9550442696],"vertexIndex":214},{"normal":null,"position":[100,125,75],"vertexIndex":215},{"normal":null,"position":[-100,50,-150],"vertexIndex":216},{"normal":null,"position":[-75,15.5376791954,-123.2537746429],"vertexIndex":217},{"normal":null,"position":[-50,-6.0660123825,-85.3553414345],"vertexIndex":218},{"normal":null,"position":[-25,-11.5221261978,-42.074367404],"vertexIndex":219},{"normal":null,"position":[25,26.7462193966,34.4623208046],"vertexIndex":221},{"normal":null,"position":[50,64.6446585655,56.0660123825],"vertexIndex":222},{"normal":null,"position":[75,107.9256296158,61.5221261978],"vertexIndex":223},{"normal":null,"position":[100,150,50],"vertexIndex":224},{"normal":null,"position":[-100,25,-175],"vertexIndex":225},{"normal":null,"position":[-75,-7.5593113899,-138.6867046356],"vertexIndex":226},{"normal":null,"position":[-50,-23.7436890602,-92.6776707172],"vertexIndex":227},{"normal":null,"position":[-25,-21.0892081261,-43.9773768187],"vertexIndex":228},{"normal":null,"position":[25,36.3133013248,32.5593113899],"vertexIndex":230},{"normal":null,"position":[50,82.3223292828,48.7436890602],"vertexIndex":231},{"normal":null,"position":[75,131.0226202011,46.0892081261],"vertexIndex":232},{"normal":null,"position":[100,175,25],"vertexIndex":233},{"normal":null,"position":[-100,0,-200],"vertexIndex":234},{"normal":null,"position":[-75,-30.6563019753,-154.1196107864],"vertexIndex":235},{"normal":null,"position":[-50,-41.421353817,-100],"vertexIndex":236},{"normal":null,"position":[-25,-30.6563019753,-45.8803892136],"vertexIndex":237},{"normal":null,"position":[25,45.8803892136,30.6563019753],"vertexIndex":239},{"normal":null,"position":[50,100,41.421353817],"vertexIndex":240},{"normal":null,"position":[75,154.1196107864,30.6563019753],"vertexIndex":241},{"normal":null,"position":[100,200,0],"vertexIndex":242},{"normal":null,"position":[-100,-200,0],"vertexIndex":243},{"normal":null,"position":[-75,-154.1196107864,30.6563019753],"vertexIndex":244},{"normal":null,"position":[-50,-100,41.421353817],"vertexIndex":245},{"normal":null,"position":[-25,-45.8803892136,30.6563019753],"vertexIndex":246},{"normal":null,"position":[25,30.6563019753,-45.8803892136],"vertexIndex":248},{"normal":null,"position":[50,41.421353817,-100],"vertexIndex":249},{"normal":null,"position":[75,30.6563019753,-154.1196107864],"vertexIndex":250},{"normal":null,"position":[100,0,-200],"vertexIndex":251},{"normal":null,"position":[-100,-175,25],"vertexIndex":252},{"normal":null,"position":[-75,-131.0226202011,46.0892081261],"vertexIndex":253},{"normal":null,"position":[-50,-82.3223292828,48.7436890602],"vertexIndex":254},{"normal":null,"position":[-25,-36.3133013248,32.5593113899],"vertexIndex":255},{"normal":null,"position":[25,21.0892081261,-43.9773768187],"vertexIndex":257},{"normal":null,"position":[50,23.7436890602,-92.6776707172],"vertexIndex":258},{"normal":null,"position":[75,7.5593113899,-138.6867046356],"vertexIndex":259},{"normal":null,"position":[100,-25,-175],"vertexIndex":260},{"normal":null,"position":[-100,-150,50],"vertexIndex":261},{"normal":null,"position":[-75,-107.9256296158,61.5221261978],"vertexIndex":262},{"normal":null,"position":[-50,-64.6446585655,56.0660123825],"vertexIndex":263},{"normal":null,"position":[-25,-26.7462193966,34.4623208046],"vertexIndex":264},{"normal":null,"position":[25,11.5221261978,-42.074367404],"vertexIndex":266},{"normal":null,"position":[50,6.0660123825,-85.3553414345],"vertexIndex":267},{"normal":null,"position":[75,-15.5376791954,-123.2537746429],"vertexIndex":268},{"normal":null,"position":[100,-50,-150],"vertexIndex":269},{"normal":null,"position":[-100,-125,75],"vertexIndex":270},{"normal":null,"position":[-75,-84.8286449909,76.9550442696],"vertexIndex":271},{"normal":null,"position":[-50,-46.9669938087,63.3883476257],"vertexIndex":272},{"normal":null,"position":[-25,-17.1791315079,36.3653302193],"vertexIndex":273},{"normal":null,"position":[25,1.9550442696,-40.1713550091],"vertexIndex":275},{"normal":null,"position":[50,-11.6116523743,-78.0330061913],"vertexIndex":276},{"normal":null,"position":[75,-38.6346697807,-107.8208684921],"vertexIndex":277},{"normal":null,"position":[100,-75,-125],"vertexIndex":278},{"normal":null,"position":[-100,-100,100],"vertexIndex":279},{"normal":null,"position":[-75,-61.7316603661,92.3879504204],"vertexIndex":280},{"normal":null,"position":[-50,-29.2893230915,70.7106769085],"vertexIndex":281},{"normal":null,"position":[-25,-7.6120495796,38.2683426142],"vertexIndex":282},{"normal":null,"position":[25,-7.6120495796,-38.2683426142],"vertexIndex":284},{"normal":null,"position":[50,-29.2893230915,-70.7106769085],"vertexIndex":285},{"normal":null,"position":[75,-61.7316603661,-92.3879504204],"vertexIndex":286},{"normal":null,"position":[100,-100,-100],"vertexIndex":287},{"normal":null,"position":[-100,-75,125],"vertexIndex":288},{"normal":null,"position":[-75,-38.6346697807,107.8208684921],"vertexIndex":289},{"normal":null,"position":[-50,-11.6116523743,78.0330061913],"vertexIndex":290},{"normal":null,"position":[-25,1.9550442696,40.1713550091],"vertexIndex":291},{"normal":null,"position":[25,-17.1791315079,-36.3653302193],"vertexIndex":293},{"normal":null,"position":[50,-46.9669938087,-63.3883476257],"vertexIndex":294},{"normal":null,"position":[75,-84.8286449909,-76.9550442696],"vertexIndex":295},{"normal":null,"position":[100,-125,-75],"vertexIndex":296},{"normal":null,"position":[-100,-50,150],"vertexIndex":297},{"normal":null,"position":[-75,-15.5376791954,123.2537746429],"vertexIndex":298},{"normal":null,"position":[-50,6.0660123825,85.3553414345],"vertexIndex":299},{"normal":null,"position":[-25,11.5221261978,42.074367404],"vertexIndex":300},{"normal":null,"position":[25,-26.7462193966,-34.4623208046],"vertexIndex":302},{"normal":null,"position":[50,-64.6446585655,-56.0660123825],"vertexIndex":303},{"normal":null,"position":[75,-107.9256296158,-61.5221261978],"vertexIndex":304},{"normal":null,"position":[100,-150,-50],"vertexIndex":305},{"normal":null,"position":[-100,-25,175],"vertexIndex":306},{"normal":null,"position":[-75,7.5593113899,138.6867046356],"vertexIndex":307},{"normal":null,"position":[-50,23.7436890602,92.6776707172],"vertexIndex":308},{"normal":null,"position":[-25,21.0892081261,43.9773768187],"vertexIndex":309},{"normal":null,"position":[25,-36.3133013248,-32.5593113899],"vertexIndex":311},{"normal":null,"position":[50,-82.3223292828,-48.7436890602],"vertexIndex":312},{"normal":null,"position":[75,-131.0226202011,-46.0892081261],"vertexIndex":313},{"normal":null,"position":[100,-175,-25],"vertexIndex":314},{"normal":null,"position":[-100,0,200],"vertexIndex":315},{"normal":null,"position":[-75,30.6563019753,154.1196107864],"vertexIndex":316},{"normal":null,"position":[-50,41.421353817,100],"vertexIndex":317},{"normal":null,"position":[-25,30.6563019753,45.8803892136],"vertexIndex":318},{"normal":null,"position":[25,-45.8803892136,-30.6563019753],"vertexIndex":320},{"normal":null,"position":[50,-100,-41.421353817],"vertexIndex":321},{"normal":null,"position":[75,-154.1196107864,-30.6563019753],"vertexIndex":322},{"normal":null,"position":[100,-200,0],"vertexIndex":323},{"normal":null,"position":[-100,0,-200],"vertexIndex":324},{"normal":null,"position":[-75,-30.6563019753,-154.1196107864],"vertexIndex":325},{"normal":null,"position":[-50,-41.421353817,-100],"vertexIndex":326},{"normal":null,"position":[-25,-30.6563019753,-45.8803892136],"vertexIndex":327},{"normal":null,"position":[25,45.8803892136,30.6563019753],"vertexIndex":329},{"normal":null,"position":[50,100,41.421353817],"vertexIndex":330},{"normal":null,"position":[75,154.1196107864,30.6563019753],"vertexIndex":331},{"normal":null,"position":[100,200,0],"vertexIndex":332},{"normal":null,"position":[-100,-25,-175],"vertexIndex":333},{"normal":null,"position":[-75,-46.0892081261,-131.0226202011],"vertexIndex":334},{"normal":null,"position":[-50,-48.7436890602,-82.3223292828],"vertexIndex":335},{"normal":null,"position":[-25,-32.5593113899,-36.3133013248],"vertexIndex":336},{"normal":null,"position":[25,43.9773768187,21.0892081261],"vertexIndex":338},{"normal":null,"position":[50,92.6776707172,23.7436890602],"vertexIndex":339},{"normal":null,"position":[75,138.6867046356,7.5593113899],"vertexIndex":340},{"normal":null,"position":[100,175,-25],"vertexIndex":341},{"normal":null,"position":[-100,-50,-150],"vertexIndex":342},{"normal":null,"position":[-75,-61.5221261978,-107.9256296158],"vertexIndex":343},{"normal":null,"position":[-50,-56.0660123825,-64.6446585655],"vertexIndex":344},{"normal":null,"position":[-25,-34.4623208046,-26.7462193966],"vertexIndex":345},{"normal":null,"position":[25,42.074367404,11.5221261978],"vertexIndex":347},{"normal":null,"position":[50,85.3553414345,6.0660123825],"vertexIndex":348},{"normal":null,"position":[75,123.2537746429,-15.5376791954],"vertexIndex":349},{"normal":null,"position":[100,150,-50],"vertexIndex":350},{"normal":null,"position":[-100,-75,-125],"vertexIndex":351},{"normal":null,"position":[-75,-76.9550442696,-84.8286449909],"vertexIndex":352},{"normal":null,"position":[-50,-63.3883476257,-46.9669938087],"vertexIndex":353},{"normal":null,"position":[-25,-36.3653302193,-17.1791315079],"vertexIndex":354},{"normal":null,"position":[25,40.1713550091,1.9550442696],"vertexIndex":356},{"normal":null,"position":[50,78.0330061913,-11.6116523743],"vertexIndex":357},{"normal":null,"position":[75,107.8208684921,-38.6346697807],"vertexIndex":358},{"normal":null,"position":[100,125,-75],"vertexIndex":359},{"normal":null,"position":[-100,-100,-100],"vertexIndex":360},{"normal":null,"position":[-75,-92.3879504204,-61.7316603661],"vertexIndex":361},{"normal":null,"position":[-50,-70.7106769085,-29.2893230915],"vertexIndex":362},{"normal":null,"position":[-25,-38.2683426142,-7.6120495796],"vertexIndex":363},{"normal":null,"position":[25,38.2683426142,-7.6120495796],"vertexIndex":365},{"normal":null,"position":[50,70.7106769085,-29.2893230915],"vertexIndex":366},{"normal":null,"position":[75,92.3879504204,-61.7316603661],"vertexIndex":367},{"normal":null,"position":[100,100,-100],"vertexIndex":368},{"normal":null,"position":[-100,-125,-75],"vertexIndex":369},{"normal":null,"position":[-75,-107.8208684921,-38.6346697807],"vertexIndex":370},{"normal":null,"position":[-50,-78.0330061913,-11.6116523743],"vertexIndex":371},{"normal":null,"position":[-25,-40.1713550091,1.9550442696],"vertexIndex":372},{"normal":null,"position":[25,36.3653302193,-17.1791315079],"vertexIndex":374},{"normal":null,"position":[50,63.3883476257,-46.9669938087],"vertexIndex":375},{"normal":null,"position":[75,76.9550442696,-84.8286449909],"vertexIndex":376},{"normal":null,"position":[100,75,-125],"vertexIndex":377},{"normal":null,"position":[-100,-150,-50],"vertexIndex":378},{"normal":null,"position":[-75,-123.2537746429,-15.5376791954],"vertexIndex":379},{"normal":null,"position":[-50,-85.3553414345,6.0660123825],"vertexIndex":380},{"normal":null,"position":[-25,-42.074367404,11.5221261978],"vertexIndex":381},{"normal":null,"position":[25,34.4623208046,-26.7462193966],"vertexIndex":383},{"normal":null,"position":[50,56.0660123825,-64.6446585655],"vertexIndex":384},{"normal":null,"position":[75,61.5221261978,-107.9256296158],"vertexIndex":385},{"normal":null,"position":[100,50,-150],"vertexIndex":386},{"normal":null,"position":[-100,-175,-25],"vertexIndex":387},{"normal":null,"position":[-75,-138.6867046356,7.5593113899],"vertexIndex":388},{"normal":null,"position":[-50,-92.6776707172,23.7436890602],"vertexIndex":389},{"normal":null,"position":[-25,-43.9773768187,21.0892081261],"vertexIndex":390},{"normal":null,"position":[25,32.5593113899,-36.3133013248],"vertexIndex":392},{"normal":null,"position":[50,48.7436890602,-82.3223292828],"vertexIndex":393},{"normal":null,"position":[75,46.0892081261,-131.0226202011],"vertexIndex":394},{"normal":null,"position":[100,25,-175],"vertexIndex":395},{"normal":null,"position":[-100,-200,0],"vertexIndex":396},{"normal":null,"position":[-75,-154.1196107864,30.6563019753],"vertexIndex":397},{"normal":null,"position":[-50,-100,41.421353817],"vertexIndex":398},{"normal":null,"position":[-25,-45.8803892136,30.6563019753],"vertexIndex":399},{"normal":null,"position":[25,30.6563019753,-45.8803892136],"vertexIndex":401},{"normal":null,"position":[50,41.421353817,-100],"vertexIndex":402},{"normal":null,"position":[75,30.6563019753,-154.1196107864],"vertexIndex":403},{"normal":null,"position":[100,0,-200],"vertexIndex":404},{"normal":null,"position":[100,0,200],"vertexIndex":405},{"normal":null,"position":[75,-30.6563019753,154.1196107864],"vertexIndex":406},{"normal":null,"position":[50,-41.421353817,100],"vertexIndex":407},{"normal":null,"position":[25,-30.6563019753,45.8803892136],"vertexIndex":408},{"normal":null,"position":[-25,45.8803892136,-30.6563019753],"vertexIndex":410},{"normal":null,"position":[-50,100,-41.421353817],"vertexIndex":411},{"normal":null,"position":[-75,154.1196107864,-30.6563019753],"vertexIndex":412},{"normal":null,"position":[-100,200,0],"vertexIndex":413},{"normal":null,"position":[100,-25,175],"vertexIndex":414},{"normal":null,"position":[75,-46.0892081261,131.0226202011],"vertexIndex":415},{"normal":null,"position":[50,-48.7436890602,82.3223292828],"vertexIndex":416},{"normal":null,"position":[25,-32.5593113899,36.3133013248],"vertexIndex":417},{"normal":null,"position":[-25,43.9773768187,-21.0892081261],"vertexIndex":419},{"normal":null,"position":[-50,92.6776707172,-23.7436890602],"vertexIndex":420},{"normal":null,"position":[-75,138.6867046356,-7.5593113899],"vertexIndex":421},{"normal":null,"position":[-100,175,25],"vertexIndex":422},{"normal":null,"position":[100,-50,150],"vertexIndex":423},{"normal":null,"position":[75,-61.5221261978,107.9256296158],"vertexIndex":424},{"normal":null,"position":[50,-56.0660123825,64.6446585655],"vertexIndex":425},{"normal":null,"position":[25,-34.4623208046,26.7462193966],"vertexIndex":426},{"normal":null,"position":[-25,42.074367404,-11.5221261978],"vertexIndex":428},{"normal":null,"position":[-50,85.3553414345,-6.0660123825],"vertexIndex":429},{"normal":null,"position":[-75,123.2537746429,15.5376791954],"vertexIndex":430},{"normal":null,"position":[-100,150,50],"vertexIndex":431},{"normal":null,"position":[100,-75,125],"vertexIndex":432},{"normal":null,"position":[75,-76.9550442696,84.8286449909],"vertexIndex":433},{"normal":null,"position":[50,-63.3883476257,46.9669938087],"vertexIndex":434},{"normal":null,"position":[25,-36.3653302193,17.1791315079],"vertexIndex":435},{"normal":null,"position":[-25,40.1713550091,-1.9550442696],"vertexIndex":437},{"normal":null,"position":[-50,78.0330061913,11.6116523743],"vertexIndex":438},{"normal":null,"position":[-75,107.8208684921,38.6346697807],"vertexIndex":439},{"normal":null,"position":[-100,125,75],"vertexIndex":440},{"normal":null,"position":[100,-100,100],"vertexIndex":441},{"normal":null,"position":[75,-92.3879504204,61.7316603661],"vertexIndex":442},{"normal":null,"position":[50,-70.7106769085,29.2893230915],"vertexIndex":443},{"normal":null,"position":[25,-38.2683426142,7.6120495796],"vertexIndex":444},{"normal":null,"position":[-25,38.2683426142,7.6120495796],"vertexIndex":446},{"normal":null,"position":[-50,70.7106769085,29.2893230915],"vertexIndex":447},{"normal":null,"position":[-75,92.3879504204,61.7316603661],"vertexIndex":448},{"normal":null,"position":[-100,100,100],"vertexIndex":449},{"normal":null,"position":[100,-125,75],"vertexIndex":450},{"normal":null,"position":[75,-107.8208684921,38.6346697807],"vertexIndex":451},{"normal":null,"position":[50,-78.0330061913,11.6116523743],"vertexIndex":452},{"normal":null,"position":[25,-40.1713550091,-1.9550442696],"vertexIndex":453},{"normal":null,"position":[-25,36.3653302193,17.1791315079],"vertexIndex":455},{"normal":null,"position":[-50,63.3883476257,46.9669938087],"vertexIndex":456},{"normal":null,"position":[-75,76.9550442696,84.8286449909],"vertexIndex":457},{"normal":null,"position":[-100,75,125],"vertexIndex":458},{"normal":null,"position":[100,-150,50],"vertexIndex":459},{"normal":null,"position":[75,-123.2537746429,15.5376791954],"vertexIndex":460},{"normal":null,"position":[50,-85.3553414345,-6.0660123825],"vertexIndex":461},{"normal":null,"position":[25,-42.074367404,-11.5221261978],"vertexIndex":462},{"normal":null,"position":[-25,34.4623208046,26.7462193966],"vertexIndex":464},{"normal":null,"position":[-50,56.0660123825,64.6446585655],"vertexIndex":465},{"normal":null,"position":[-75,61.5221261978,107.9256296158],"vertexIndex":466},{"normal":null,"position":[-100,50,150],"vertexIndex":467},{"normal":null,"position":[100,-175,25],"vertexIndex":468},{"normal":null,"position":[75,-138.6867046356,-7.5593113899],"vertexIndex":469},{"normal":null,"position":[50,-92.6776707172,-23.7436890602],"vertexIndex":470},{"normal":null,"position":[25,-43.9773768187,-21.0892081261],"vertexIndex":471},{"normal":null,"position":[-25,32.5593113899,36.3133013248],"vertexIndex":473},{"normal":null,"position":[-50,48.7436890602,82.3223292828],"vertexIndex":474},{"normal":null,"position":[-75,46.0892081261,131.0226202011],"vertexIndex":475},{"normal":null,"position":[-100,25,175],"vertexIndex":476},{"normal":null,"position":[100,-200,0],"vertexIndex":477},{"normal":null,"position":[75,-154.1196107864,-30.6563019753],"vertexIndex":478},{"normal":null,"position":[50,-100,-41.421353817],"vertexIndex":479},{"normal":null,"position":[25,-45.8803892136,-30.6563019753],"vertexIndex":480},{"normal":null,"position":[-25,30.6563019753,45.8803892136],"vertexIndex":482},{"normal":null,"position":[-50,41.421353817,100],"vertexIndex":483},{"normal":null,"position":[-75,30.6563019753,154.1196107864],"vertexIndex":484},{"normal":null,"position":[-100,0,200],"vertexIndex":485}],"id":"twist"}]},"identity":{"id":"webgl-morphtargets","name":"WebGL Morph Targets","revision":"1.0.0"},"materials":[{"color":[0.396078431372549,0,0,1],"id":"source-lit-101-000-000"},{"color":[0.5843137254901961,0,0,1],"id":"source-lit-149-000-000"},{"color":[0.5882352941176471,0,0,1],"id":"source-lit-150-000-000"},{"color":[0.592156862745098,0,0,1],"id":"source-lit-151-000-000"},{"color":[0.596078431372549,0,0,1],"id":"source-lit-152-000-000"},{"color":[0.6,0,0,1],"id":"source-lit-153-000-000"},{"color":[0.6039215686274509,0,0,1],"id":"source-lit-154-000-000"},{"color":[0.6078431372549019,0,0,1],"id":"source-lit-155-000-000"},{"color":[0.611764705882353,0,0,1],"id":"source-lit-156-000-000"},{"color":[0.615686274509804,0,0,1],"id":"source-lit-157-000-000"},{"color":[0.6196078431372549,0,0,1],"id":"source-lit-158-000-000"},{"color":[0.6235294117647059,0,0,1],"id":"source-lit-159-000-000"},{"color":[0.6274509803921569,0,0,1],"id":"source-lit-160-000-000"},{"color":[0.6313725490196078,0,0,1],"id":"source-lit-161-000-000"},{"color":[0.6352941176470588,0,0,1],"id":"source-lit-162-000-000"},{"color":[0.6392156862745098,0,0,1],"id":"source-lit-163-000-000"},{"color":[0.6431372549019608,0,0,1],"id":"source-lit-164-000-000"},{"color":[0.6470588235294118,0,0,1],"id":"source-lit-165-000-000"},{"color":[0.6509803921568628,0,0,1],"id":"source-lit-166-000-000"},{"color":[0.6549019607843137,0,0,1],"id":"source-lit-167-000-000"},{"color":[0.6588235294117647,0,0,1],"id":"source-lit-168-000-000"},{"color":[0.6627450980392157,0,0,1],"id":"source-lit-169-000-000"},{"color":[0.6666666666666666,0,0,1],"id":"source-lit-170-000-000"},{"color":[0.6705882352941176,0,0,1],"id":"source-lit-171-000-000"},{"color":[0.6745098039215687,0,0,1],"id":"source-lit-172-000-000"},{"color":[0.6784313725490196,0,0,1],"id":"source-lit-173-000-000"},{"color":[0.6823529411764706,0,0,1],"id":"source-lit-174-000-000"},{"color":[0.6862745098039216,0,0,1],"id":"source-lit-175-000-000"},{"color":[0.6901960784313725,0,0,1],"id":"source-lit-176-000-000"},{"color":[0.6941176470588235,0,0,1],"id":"source-lit-177-000-000"},{"color":[0.6980392156862745,0,0,1],"id":"source-lit-178-000-000"},{"color":[0.7019607843137254,0,0,1],"id":"source-lit-179-000-000"},{"color":[0.7058823529411765,0,0,1],"id":"source-lit-180-000-000"},{"color":[0.7098039215686275,0,0,1],"id":"source-lit-181-000-000"},{"color":[0.7137254901960784,0,0,1],"id":"source-lit-182-000-000"},{"color":[0.7176470588235294,0,0,1],"id":"source-lit-183-000-000"},{"color":[0.7215686274509804,0,0,1],"id":"source-lit-184-000-000"},{"color":[0.7254901960784313,0,0,1],"id":"source-lit-185-000-000"},{"color":[0.7294117647058823,0,0,1],"id":"source-lit-186-000-000"},{"color":[0.7333333333333333,0,0,1],"id":"source-lit-187-000-000"},{"color":[0.7372549019607844,0,0,1],"id":"source-lit-188-000-000"},{"color":[0.7411764705882353,0,0,1],"id":"source-lit-189-000-000"},{"color":[0.7450980392156863,0,0,1],"id":"source-lit-190-000-000"},{"color":[0.7490196078431373,0,0,1],"id":"source-lit-191-000-000"},{"color":[0.7529411764705882,0,0,1],"id":"source-lit-192-000-000"},{"color":[0.7568627450980392,0,0,1],"id":"source-lit-193-000-000"},{"color":[0.7607843137254902,0,0,1],"id":"source-lit-194-000-000"},{"color":[0.7647058823529411,0,0,1],"id":"source-lit-195-000-000"},{"color":[0.7686274509803922,0,0,1],"id":"source-lit-196-000-000"},{"color":[0.7725490196078432,0,0,1],"id":"source-lit-197-000-000"},{"color":[0.7764705882352941,0,0,1],"id":"source-lit-198-000-000"},{"color":[0.7803921568627451,0,0,1],"id":"source-lit-199-000-000"},{"color":[0.7843137254901961,0,0,1],"id":"source-lit-200-000-000"},{"color":[0.788235294117647,0,0,1],"id":"source-lit-201-000-000"},{"color":[0.792156862745098,0,0,1],"id":"source-lit-202-000-000"},{"color":[0.796078431372549,0,0,1],"id":"source-lit-203-000-000"},{"color":[0.8,0,0,1],"id":"source-lit-204-000-000"},{"color":[0.803921568627451,0,0,1],"id":"source-lit-205-000-000"},{"color":[0.807843137254902,0,0,1],"id":"source-lit-206-000-000"},{"color":[0.8117647058823529,0,0,1],"id":"source-lit-207-000-000"},{"color":[0.8156862745098039,0,0,1],"id":"source-lit-208-000-000"},{"color":[0.8196078431372549,0,0,1],"id":"source-lit-209-000-000"},{"color":[0.8235294117647058,0,0,1],"id":"source-lit-210-000-000"},{"color":[0.8274509803921568,0,0,1],"id":"source-lit-211-000-000"},{"color":[0.8313725490196079,0,0,1],"id":"source-lit-212-000-000"},{"color":[0.8352941176470589,0,0,1],"id":"source-lit-213-000-000"},{"color":[0.8392156862745098,0,0,1],"id":"source-lit-214-000-000"},{"color":[0.8431372549019608,0,0,1],"id":"source-lit-215-000-000"},{"color":[0.8470588235294118,0,0,1],"id":"source-lit-216-000-000"},{"color":[0.8509803921568627,0,0,1],"id":"source-lit-217-000-000"},{"color":[0.8549019607843137,0,0,1],"id":"source-lit-218-000-000"},{"color":[0.8588235294117647,0,0,1],"id":"source-lit-219-000-000"},{"color":[0.8627450980392157,0,0,1],"id":"source-lit-220-000-000"},{"color":[0.8666666666666667,0,0,1],"id":"source-lit-221-000-000"},{"color":[0.8705882352941177,0,0,1],"id":"source-lit-222-000-000"},{"color":[0.8745098039215686,0,0,1],"id":"source-lit-223-000-000"},{"color":[0.8784313725490196,0,0,1],"id":"source-lit-224-000-000"},{"color":[0.8823529411764706,0,0,1],"id":"source-lit-225-000-000"},{"color":[0.8862745098039215,0,0,1],"id":"source-lit-226-000-000"},{"color":[0.8901960784313725,0,0,1],"id":"source-lit-227-000-000"},{"color":[0.8941176470588236,0,0,1],"id":"source-lit-228-000-000"},{"color":[0.9019607843137255,0,0,1],"id":"source-lit-230-000-000"},{"color":[0.9058823529411765,0,0,1],"id":"source-lit-231-000-000"},{"color":[0.9098039215686274,0,0,1],"id":"source-lit-232-000-000"},{"color":[0.9176470588235294,0,0,1],"id":"source-lit-234-000-000"}],"playback":null,"profile":"morph-regions","provenance":{"generator":"polycss-morph","generatorVersion":"1.0.0","sources":[{"id":"threejs-webgl-morphtargets","kind":"open-data","license":"MIT","sha256":"81d437494770e6f46c76c6886ac50999369d325db7fd7ff3f8a809bd7a7cdd99","uri":"https://github.com/mrdoob/three.js/blob/7763535f6f944a32105af7d9d57d83a92f310d51/examples/webgl_morphtargets.html"}]},"render":{"leaves":[{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000000","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,-87.5,112.5,1],"polygonId":"polygon-000000","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":32,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000001","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,-87.5,62.5,1],"polygonId":"polygon-000001","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":63,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000002","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,-87.5,87.5,1],"polygonId":"polygon-000002","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":94,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000003","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,-87.5,37.5,1],"polygonId":"polygon-000003","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":125,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000004","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,-87.5,62.5,1],"polygonId":"polygon-000004","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":156,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000005","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,-87.5,12.5,1],"polygonId":"polygon-000005","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":187,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000006","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,-87.5,37.5,1],"polygonId":"polygon-000006","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":218,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000007","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,-87.5,-12.5,1],"polygonId":"polygon-000007","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":249,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000008","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,-87.5,12.5,1],"polygonId":"polygon-000008","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":280,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000009","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,-87.5,-37.5,1],"polygonId":"polygon-000009","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":311,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000010","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,-87.5,-12.5,1],"polygonId":"polygon-000010","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":342,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000011","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,-87.5,-62.5,1],"polygonId":"polygon-000011","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":373,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000012","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,-87.5,-37.5,1],"polygonId":"polygon-000012","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":404,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000013","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,-87.5,-87.5,1],"polygonId":"polygon-000013","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":435,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000014","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,-87.5,-62.5,1],"polygonId":"polygon-000014","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":466,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000015","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,-87.5,-112.5,1],"polygonId":"polygon-000015","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":497,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000016","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,-62.5,112.5,1],"polygonId":"polygon-000016","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":528,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000017","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,-62.5,62.5,1],"polygonId":"polygon-000017","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":559,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000018","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,-62.5,87.5,1],"polygonId":"polygon-000018","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":590,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000019","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,-62.5,37.5,1],"polygonId":"polygon-000019","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":621,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000020","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,-62.5,62.5,1],"polygonId":"polygon-000020","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":652,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000021","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,-62.5,12.5,1],"polygonId":"polygon-000021","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":683,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000022","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,-62.5,37.5,1],"polygonId":"polygon-000022","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":714,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000023","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,-62.5,-12.5,1],"polygonId":"polygon-000023","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":745,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000024","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,-62.5,12.5,1],"polygonId":"polygon-000024","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":776,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000025","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,-62.5,-37.5,1],"polygonId":"polygon-000025","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":807,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000026","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,-62.5,-12.5,1],"polygonId":"polygon-000026","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":838,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000027","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,-62.5,-62.5,1],"polygonId":"polygon-000027","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":869,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000028","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,-62.5,-37.5,1],"polygonId":"polygon-000028","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":900,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000029","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,-62.5,-87.5,1],"polygonId":"polygon-000029","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":931,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000030","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,-62.5,-62.5,1],"polygonId":"polygon-000030","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":962,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000031","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,-62.5,-112.5,1],"polygonId":"polygon-000031","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":993,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000032","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,-37.5,112.5,1],"polygonId":"polygon-000032","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1024,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000033","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,-37.5,62.5,1],"polygonId":"polygon-000033","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1055,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000034","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,-37.5,87.5,1],"polygonId":"polygon-000034","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1086,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000035","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,-37.5,37.5,1],"polygonId":"polygon-000035","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1117,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000036","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,-37.5,62.5,1],"polygonId":"polygon-000036","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1148,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000037","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,-37.5,12.5,1],"polygonId":"polygon-000037","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1179,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000038","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,-37.5,37.5,1],"polygonId":"polygon-000038","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1210,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000039","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,-37.5,-12.5,1],"polygonId":"polygon-000039","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1241,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000040","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,-37.5,12.5,1],"polygonId":"polygon-000040","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1272,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000041","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,-37.5,-37.5,1],"polygonId":"polygon-000041","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1303,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000042","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,-37.5,-12.5,1],"polygonId":"polygon-000042","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1334,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000043","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,-37.5,-62.5,1],"polygonId":"polygon-000043","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1365,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000044","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,-37.5,-37.5,1],"polygonId":"polygon-000044","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1396,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000045","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,-37.5,-87.5,1],"polygonId":"polygon-000045","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1427,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000046","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,-37.5,-62.5,1],"polygonId":"polygon-000046","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1458,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000047","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,-37.5,-112.5,1],"polygonId":"polygon-000047","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1489,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000048","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,-12.5,112.5,1],"polygonId":"polygon-000048","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1520,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000049","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,-12.5,62.5,1],"polygonId":"polygon-000049","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1551,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000050","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,-12.5,87.5,1],"polygonId":"polygon-000050","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1582,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000051","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,-12.5,37.5,1],"polygonId":"polygon-000051","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1613,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000052","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,-12.5,62.5,1],"polygonId":"polygon-000052","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1644,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000053","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,-12.5,12.5,1],"polygonId":"polygon-000053","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1675,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000054","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,-12.5,37.5,1],"polygonId":"polygon-000054","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1706,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000055","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,-12.5,-12.5,1],"polygonId":"polygon-000055","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1737,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000056","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,-12.5,12.5,1],"polygonId":"polygon-000056","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1768,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000057","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,-12.5,-37.5,1],"polygonId":"polygon-000057","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1799,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000058","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,-12.5,-12.5,1],"polygonId":"polygon-000058","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1830,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000059","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,-12.5,-62.5,1],"polygonId":"polygon-000059","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1861,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000060","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,-12.5,-37.5,1],"polygonId":"polygon-000060","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1892,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000061","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,-12.5,-87.5,1],"polygonId":"polygon-000061","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1923,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000062","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,-12.5,-62.5,1],"polygonId":"polygon-000062","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1954,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000063","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,-12.5,-112.5,1],"polygonId":"polygon-000063","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1985,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000064","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,12.5,112.5,1],"polygonId":"polygon-000064","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2016,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000065","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,12.5,62.5,1],"polygonId":"polygon-000065","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2047,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000066","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,12.5,87.5,1],"polygonId":"polygon-000066","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2078,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000067","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,12.5,37.5,1],"polygonId":"polygon-000067","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2109,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000068","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,12.5,62.5,1],"polygonId":"polygon-000068","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2140,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000069","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,12.5,12.5,1],"polygonId":"polygon-000069","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2171,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000070","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,12.5,37.5,1],"polygonId":"polygon-000070","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2202,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000071","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,12.5,-12.5,1],"polygonId":"polygon-000071","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2233,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000072","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,12.5,12.5,1],"polygonId":"polygon-000072","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2264,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000073","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,12.5,-37.5,1],"polygonId":"polygon-000073","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2295,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000074","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,12.5,-12.5,1],"polygonId":"polygon-000074","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2326,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000075","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,12.5,-62.5,1],"polygonId":"polygon-000075","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2357,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000076","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,12.5,-37.5,1],"polygonId":"polygon-000076","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2388,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000077","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,12.5,-87.5,1],"polygonId":"polygon-000077","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2419,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000078","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,12.5,-62.5,1],"polygonId":"polygon-000078","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2450,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000079","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,12.5,-112.5,1],"polygonId":"polygon-000079","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2481,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000080","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,37.5,112.5,1],"polygonId":"polygon-000080","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2512,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000081","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,37.5,62.5,1],"polygonId":"polygon-000081","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2543,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000082","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,37.5,87.5,1],"polygonId":"polygon-000082","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2574,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000083","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,37.5,37.5,1],"polygonId":"polygon-000083","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2605,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000084","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,37.5,62.5,1],"polygonId":"polygon-000084","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2636,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000085","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,37.5,12.5,1],"polygonId":"polygon-000085","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2667,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000086","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,37.5,37.5,1],"polygonId":"polygon-000086","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2698,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000087","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,37.5,-12.5,1],"polygonId":"polygon-000087","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2729,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000088","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,37.5,12.5,1],"polygonId":"polygon-000088","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2760,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000089","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,37.5,-37.5,1],"polygonId":"polygon-000089","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2791,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000090","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,37.5,-12.5,1],"polygonId":"polygon-000090","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2822,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000091","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,37.5,-62.5,1],"polygonId":"polygon-000091","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2853,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000092","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,37.5,-37.5,1],"polygonId":"polygon-000092","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2884,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000093","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,37.5,-87.5,1],"polygonId":"polygon-000093","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2915,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000094","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,37.5,-62.5,1],"polygonId":"polygon-000094","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2946,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000095","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,37.5,-112.5,1],"polygonId":"polygon-000095","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2977,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000096","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,62.5,112.5,1],"polygonId":"polygon-000096","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3008,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000097","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,62.5,62.5,1],"polygonId":"polygon-000097","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3039,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000098","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,62.5,87.5,1],"polygonId":"polygon-000098","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3070,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000099","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,62.5,37.5,1],"polygonId":"polygon-000099","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3101,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000100","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,62.5,62.5,1],"polygonId":"polygon-000100","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3132,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000101","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,62.5,12.5,1],"polygonId":"polygon-000101","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3163,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000102","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,62.5,37.5,1],"polygonId":"polygon-000102","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3194,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000103","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,62.5,-12.5,1],"polygonId":"polygon-000103","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3225,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000104","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,62.5,12.5,1],"polygonId":"polygon-000104","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3256,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000105","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,62.5,-37.5,1],"polygonId":"polygon-000105","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3287,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000106","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,62.5,-12.5,1],"polygonId":"polygon-000106","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3318,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000107","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,62.5,-62.5,1],"polygonId":"polygon-000107","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3349,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000108","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,62.5,-37.5,1],"polygonId":"polygon-000108","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3380,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000109","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,62.5,-87.5,1],"polygonId":"polygon-000109","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3411,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000110","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,62.5,-62.5,1],"polygonId":"polygon-000110","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3442,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000111","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,62.5,-112.5,1],"polygonId":"polygon-000111","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3473,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000112","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,87.5,112.5,1],"polygonId":"polygon-000112","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3504,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000113","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,87.5,62.5,1],"polygonId":"polygon-000113","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3535,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000114","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,87.5,87.5,1],"polygonId":"polygon-000114","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3566,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000115","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,87.5,37.5,1],"polygonId":"polygon-000115","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3597,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000116","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,87.5,62.5,1],"polygonId":"polygon-000116","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3628,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000117","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,87.5,12.5,1],"polygonId":"polygon-000117","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3659,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000118","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,87.5,37.5,1],"polygonId":"polygon-000118","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3690,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000119","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,87.5,-12.5,1],"polygonId":"polygon-000119","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3721,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000120","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,87.5,12.5,1],"polygonId":"polygon-000120","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3752,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000121","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,87.5,-37.5,1],"polygonId":"polygon-000121","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3783,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000122","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,87.5,-12.5,1],"polygonId":"polygon-000122","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3814,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000123","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,87.5,-62.5,1],"polygonId":"polygon-000123","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3845,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000124","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,87.5,-37.5,1],"polygonId":"polygon-000124","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3876,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000125","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,87.5,-87.5,1],"polygonId":"polygon-000125","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3907,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000126","materialId":"source-lit-101-000-000","matrix":[0,-0.78125,-0.78125,0,0,0.390625,-0.390625,0,1,0,0,0,100,87.5,-62.5,1],"polygonId":"polygon-000126","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3938,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000127","materialId":"source-lit-101-000-000","matrix":[0,0.78125,0.78125,0,0,-0.390625,0.390625,0,1,0,0,0,100,87.5,-112.5,1],"polygonId":"polygon-000127","shapeId":"shape-0000-morph-targets-box-0","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3969,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000128","materialId":"source-lit-169-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,-87.5,-112.5,1],"polygonId":"polygon-000128","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":4000,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000129","materialId":"source-lit-170-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,-87.5,-62.5,1],"polygonId":"polygon-000129","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":4031,"y":1},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000130","materialId":"source-lit-173-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,-87.5,-87.5,1],"polygonId":"polygon-000130","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":4062,"y":1},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000131","materialId":"source-lit-173-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,-87.5,-37.5,1],"polygonId":"polygon-000131","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000132","materialId":"source-lit-176-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,-87.5,-62.5,1],"polygonId":"polygon-000132","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":32,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000133","materialId":"source-lit-177-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,-87.5,-12.5,1],"polygonId":"polygon-000133","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":63,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000134","materialId":"source-lit-180-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,-87.5,-37.5,1],"polygonId":"polygon-000134","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":94,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000135","materialId":"source-lit-181-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,-87.5,12.5,1],"polygonId":"polygon-000135","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":125,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000136","materialId":"source-lit-184-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,-87.5,-12.5,1],"polygonId":"polygon-000136","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":156,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000137","materialId":"source-lit-185-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,-87.5,37.5,1],"polygonId":"polygon-000137","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":187,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000138","materialId":"source-lit-188-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,-87.5,12.5,1],"polygonId":"polygon-000138","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":218,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000139","materialId":"source-lit-189-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,-87.5,62.5,1],"polygonId":"polygon-000139","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":249,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000140","materialId":"source-lit-192-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,-87.5,37.5,1],"polygonId":"polygon-000140","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":280,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000141","materialId":"source-lit-193-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,-87.5,87.5,1],"polygonId":"polygon-000141","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":311,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000142","materialId":"source-lit-197-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,-87.5,62.5,1],"polygonId":"polygon-000142","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":342,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000143","materialId":"source-lit-197-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,-87.5,112.5,1],"polygonId":"polygon-000143","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":373,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000144","materialId":"source-lit-168-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,-62.5,-112.5,1],"polygonId":"polygon-000144","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":404,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000145","materialId":"source-lit-169-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,-62.5,-62.5,1],"polygonId":"polygon-000145","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":435,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000146","materialId":"source-lit-171-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,-62.5,-87.5,1],"polygonId":"polygon-000146","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":466,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000147","materialId":"source-lit-172-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,-62.5,-37.5,1],"polygonId":"polygon-000147","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":497,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000148","materialId":"source-lit-175-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,-62.5,-62.5,1],"polygonId":"polygon-000148","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":528,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000149","materialId":"source-lit-175-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,-62.5,-12.5,1],"polygonId":"polygon-000149","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":559,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000150","materialId":"source-lit-178-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,-62.5,-37.5,1],"polygonId":"polygon-000150","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":590,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000151","materialId":"source-lit-179-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,-62.5,12.5,1],"polygonId":"polygon-000151","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":621,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000152","materialId":"source-lit-182-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,-62.5,-12.5,1],"polygonId":"polygon-000152","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":652,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000153","materialId":"source-lit-183-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,-62.5,37.5,1],"polygonId":"polygon-000153","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":683,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000154","materialId":"source-lit-186-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,-62.5,12.5,1],"polygonId":"polygon-000154","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":714,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000155","materialId":"source-lit-186-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,-62.5,62.5,1],"polygonId":"polygon-000155","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":745,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000156","materialId":"source-lit-190-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,-62.5,37.5,1],"polygonId":"polygon-000156","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":776,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000157","materialId":"source-lit-191-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,-62.5,87.5,1],"polygonId":"polygon-000157","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":807,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000158","materialId":"source-lit-194-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,-62.5,62.5,1],"polygonId":"polygon-000158","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":838,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000159","materialId":"source-lit-195-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,-62.5,112.5,1],"polygonId":"polygon-000159","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":869,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000160","materialId":"source-lit-167-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,-37.5,-112.5,1],"polygonId":"polygon-000160","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":900,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000161","materialId":"source-lit-167-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,-37.5,-62.5,1],"polygonId":"polygon-000161","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":931,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000162","materialId":"source-lit-170-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,-37.5,-87.5,1],"polygonId":"polygon-000162","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":962,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000163","materialId":"source-lit-170-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,-37.5,-37.5,1],"polygonId":"polygon-000163","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":993,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000164","materialId":"source-lit-173-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,-37.5,-62.5,1],"polygonId":"polygon-000164","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1024,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000165","materialId":"source-lit-173-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,-37.5,-12.5,1],"polygonId":"polygon-000165","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1055,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000166","materialId":"source-lit-176-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,-37.5,-37.5,1],"polygonId":"polygon-000166","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1086,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000167","materialId":"source-lit-177-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,-37.5,12.5,1],"polygonId":"polygon-000167","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1117,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000168","materialId":"source-lit-180-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,-37.5,-12.5,1],"polygonId":"polygon-000168","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1148,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000169","materialId":"source-lit-181-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,-37.5,37.5,1],"polygonId":"polygon-000169","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1179,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000170","materialId":"source-lit-184-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,-37.5,12.5,1],"polygonId":"polygon-000170","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1210,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000171","materialId":"source-lit-184-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,-37.5,62.5,1],"polygonId":"polygon-000171","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1241,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000172","materialId":"source-lit-188-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,-37.5,37.5,1],"polygonId":"polygon-000172","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1272,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000173","materialId":"source-lit-188-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,-37.5,87.5,1],"polygonId":"polygon-000173","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1303,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000174","materialId":"source-lit-192-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,-37.5,62.5,1],"polygonId":"polygon-000174","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1334,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000175","materialId":"source-lit-192-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,-37.5,112.5,1],"polygonId":"polygon-000175","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1365,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000176","materialId":"source-lit-165-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,-12.5,-112.5,1],"polygonId":"polygon-000176","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1396,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000177","materialId":"source-lit-166-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,-12.5,-62.5,1],"polygonId":"polygon-000177","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1427,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000178","materialId":"source-lit-168-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,-12.5,-87.5,1],"polygonId":"polygon-000178","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1458,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000179","materialId":"source-lit-169-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,-12.5,-37.5,1],"polygonId":"polygon-000179","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1489,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000180","materialId":"source-lit-171-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,-12.5,-62.5,1],"polygonId":"polygon-000180","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1520,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000181","materialId":"source-lit-172-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,-12.5,-12.5,1],"polygonId":"polygon-000181","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1551,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000182","materialId":"source-lit-175-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,-12.5,-37.5,1],"polygonId":"polygon-000182","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1582,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000183","materialId":"source-lit-175-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,-12.5,12.5,1],"polygonId":"polygon-000183","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1613,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000184","materialId":"source-lit-178-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,-12.5,-12.5,1],"polygonId":"polygon-000184","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1644,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000185","materialId":"source-lit-178-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,-12.5,37.5,1],"polygonId":"polygon-000185","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1675,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000186","materialId":"source-lit-182-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,-12.5,12.5,1],"polygonId":"polygon-000186","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1706,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000187","materialId":"source-lit-182-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,-12.5,62.5,1],"polygonId":"polygon-000187","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1737,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000188","materialId":"source-lit-185-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,-12.5,37.5,1],"polygonId":"polygon-000188","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1768,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000189","materialId":"source-lit-186-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,-12.5,87.5,1],"polygonId":"polygon-000189","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1799,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000190","materialId":"source-lit-189-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,-12.5,62.5,1],"polygonId":"polygon-000190","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1830,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000191","materialId":"source-lit-190-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,-12.5,112.5,1],"polygonId":"polygon-000191","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1861,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000192","materialId":"source-lit-164-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,12.5,-112.5,1],"polygonId":"polygon-000192","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1892,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000193","materialId":"source-lit-164-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,12.5,-62.5,1],"polygonId":"polygon-000193","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1923,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000194","materialId":"source-lit-166-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,12.5,-87.5,1],"polygonId":"polygon-000194","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1954,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000195","materialId":"source-lit-167-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,12.5,-37.5,1],"polygonId":"polygon-000195","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1985,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000196","materialId":"source-lit-169-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,12.5,-62.5,1],"polygonId":"polygon-000196","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2016,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000197","materialId":"source-lit-170-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,12.5,-12.5,1],"polygonId":"polygon-000197","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2047,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000198","materialId":"source-lit-173-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,12.5,-37.5,1],"polygonId":"polygon-000198","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2078,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000199","materialId":"source-lit-173-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,12.5,12.5,1],"polygonId":"polygon-000199","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2109,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000200","materialId":"source-lit-176-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,12.5,-12.5,1],"polygonId":"polygon-000200","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2140,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000201","materialId":"source-lit-176-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,12.5,37.5,1],"polygonId":"polygon-000201","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2171,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000202","materialId":"source-lit-179-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,12.5,12.5,1],"polygonId":"polygon-000202","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2202,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000203","materialId":"source-lit-180-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,12.5,62.5,1],"polygonId":"polygon-000203","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2233,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000204","materialId":"source-lit-183-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,12.5,37.5,1],"polygonId":"polygon-000204","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2264,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000205","materialId":"source-lit-183-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,12.5,87.5,1],"polygonId":"polygon-000205","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2295,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000206","materialId":"source-lit-187-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,12.5,62.5,1],"polygonId":"polygon-000206","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2326,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000207","materialId":"source-lit-187-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,12.5,112.5,1],"polygonId":"polygon-000207","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2357,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000208","materialId":"source-lit-162-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,37.5,-112.5,1],"polygonId":"polygon-000208","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2388,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000209","materialId":"source-lit-162-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,37.5,-62.5,1],"polygonId":"polygon-000209","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2419,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000210","materialId":"source-lit-165-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,37.5,-87.5,1],"polygonId":"polygon-000210","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2450,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000211","materialId":"source-lit-165-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,37.5,-37.5,1],"polygonId":"polygon-000211","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2481,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000212","materialId":"source-lit-168-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,37.5,-62.5,1],"polygonId":"polygon-000212","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2512,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000213","materialId":"source-lit-168-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,37.5,-12.5,1],"polygonId":"polygon-000213","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2543,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000214","materialId":"source-lit-171-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,37.5,-37.5,1],"polygonId":"polygon-000214","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2574,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000215","materialId":"source-lit-171-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,37.5,12.5,1],"polygonId":"polygon-000215","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2605,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000216","materialId":"source-lit-174-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,37.5,-12.5,1],"polygonId":"polygon-000216","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2636,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000217","materialId":"source-lit-174-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,37.5,37.5,1],"polygonId":"polygon-000217","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2667,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000218","materialId":"source-lit-177-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,37.5,12.5,1],"polygonId":"polygon-000218","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2698,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000219","materialId":"source-lit-178-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,37.5,62.5,1],"polygonId":"polygon-000219","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2729,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000220","materialId":"source-lit-181-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,37.5,37.5,1],"polygonId":"polygon-000220","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2760,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000221","materialId":"source-lit-181-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,37.5,87.5,1],"polygonId":"polygon-000221","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2791,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000222","materialId":"source-lit-184-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,37.5,62.5,1],"polygonId":"polygon-000222","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2822,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000223","materialId":"source-lit-184-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,37.5,112.5,1],"polygonId":"polygon-000223","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2853,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000224","materialId":"source-lit-161-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,62.5,-112.5,1],"polygonId":"polygon-000224","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2884,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000225","materialId":"source-lit-161-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,62.5,-62.5,1],"polygonId":"polygon-000225","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2915,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000226","materialId":"source-lit-163-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,62.5,-87.5,1],"polygonId":"polygon-000226","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2946,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000227","materialId":"source-lit-164-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,62.5,-37.5,1],"polygonId":"polygon-000227","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2977,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000228","materialId":"source-lit-166-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,62.5,-62.5,1],"polygonId":"polygon-000228","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3008,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000229","materialId":"source-lit-166-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,62.5,-12.5,1],"polygonId":"polygon-000229","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3039,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000230","materialId":"source-lit-169-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,62.5,-37.5,1],"polygonId":"polygon-000230","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3070,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000231","materialId":"source-lit-169-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,62.5,12.5,1],"polygonId":"polygon-000231","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3101,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000232","materialId":"source-lit-172-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,62.5,-12.5,1],"polygonId":"polygon-000232","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3132,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000233","materialId":"source-lit-172-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,62.5,37.5,1],"polygonId":"polygon-000233","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3163,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000234","materialId":"source-lit-175-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,62.5,12.5,1],"polygonId":"polygon-000234","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3194,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000235","materialId":"source-lit-175-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,62.5,62.5,1],"polygonId":"polygon-000235","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3225,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000236","materialId":"source-lit-178-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,62.5,37.5,1],"polygonId":"polygon-000236","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3256,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000237","materialId":"source-lit-178-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,62.5,87.5,1],"polygonId":"polygon-000237","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3287,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000238","materialId":"source-lit-182-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,62.5,62.5,1],"polygonId":"polygon-000238","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3318,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000239","materialId":"source-lit-182-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,62.5,112.5,1],"polygonId":"polygon-000239","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3349,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000240","materialId":"source-lit-159-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,87.5,-112.5,1],"polygonId":"polygon-000240","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3380,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000241","materialId":"source-lit-159-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,87.5,-62.5,1],"polygonId":"polygon-000241","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3411,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000242","materialId":"source-lit-162-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,87.5,-87.5,1],"polygonId":"polygon-000242","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3442,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000243","materialId":"source-lit-162-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,87.5,-37.5,1],"polygonId":"polygon-000243","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3473,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000244","materialId":"source-lit-164-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,87.5,-62.5,1],"polygonId":"polygon-000244","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3504,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000245","materialId":"source-lit-164-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,87.5,-12.5,1],"polygonId":"polygon-000245","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3535,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000246","materialId":"source-lit-167-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,87.5,-37.5,1],"polygonId":"polygon-000246","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3566,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000247","materialId":"source-lit-167-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,87.5,12.5,1],"polygonId":"polygon-000247","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3597,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000248","materialId":"source-lit-170-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,87.5,-12.5,1],"polygonId":"polygon-000248","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3628,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000249","materialId":"source-lit-170-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,87.5,37.5,1],"polygonId":"polygon-000249","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3659,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000250","materialId":"source-lit-173-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,87.5,12.5,1],"polygonId":"polygon-000250","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3690,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000251","materialId":"source-lit-173-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,87.5,62.5,1],"polygonId":"polygon-000251","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3721,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000252","materialId":"source-lit-176-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,87.5,37.5,1],"polygonId":"polygon-000252","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3752,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000253","materialId":"source-lit-176-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,87.5,87.5,1],"polygonId":"polygon-000253","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3783,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000254","materialId":"source-lit-179-000-000","matrix":[0,-0.78125,0.78125,0,0,0.390625,0.390625,0,-1,0,0,0,-100,87.5,62.5,1],"polygonId":"polygon-000254","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3814,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000255","materialId":"source-lit-179-000-000","matrix":[0,0.78125,-0.78125,0,0,-0.390625,-0.390625,0,-1,0,0,0,-100,87.5,112.5,1],"polygonId":"polygon-000255","shapeId":"shape-0001-morph-targets-box-1","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3845,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000256","materialId":"source-lit-160-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-112.5,-100,-87.5,1],"polygonId":"polygon-000256","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3876,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000257","materialId":"source-lit-160-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,-62.5,-100,-87.5,1],"polygonId":"polygon-000257","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3907,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000258","materialId":"source-lit-158-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-87.5,-100,-87.5,1],"polygonId":"polygon-000258","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3938,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000259","materialId":"source-lit-159-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,-37.5,-100,-87.5,1],"polygonId":"polygon-000259","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3969,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000260","materialId":"source-lit-157-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-62.5,-100,-87.5,1],"polygonId":"polygon-000260","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":4000,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000261","materialId":"source-lit-157-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,-12.5,-100,-87.5,1],"polygonId":"polygon-000261","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":4031,"y":32},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000262","materialId":"source-lit-155-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-37.5,-100,-87.5,1],"polygonId":"polygon-000262","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":4062,"y":32},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000263","materialId":"source-lit-156-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,12.5,-100,-87.5,1],"polygonId":"polygon-000263","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000264","materialId":"source-lit-154-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-12.5,-100,-87.5,1],"polygonId":"polygon-000264","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":32,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000265","materialId":"source-lit-154-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,37.5,-100,-87.5,1],"polygonId":"polygon-000265","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":63,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000266","materialId":"source-lit-152-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,12.5,-100,-87.5,1],"polygonId":"polygon-000266","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":94,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000267","materialId":"source-lit-153-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,62.5,-100,-87.5,1],"polygonId":"polygon-000267","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":125,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000268","materialId":"source-lit-151-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,37.5,-100,-87.5,1],"polygonId":"polygon-000268","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":156,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000269","materialId":"source-lit-151-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,87.5,-100,-87.5,1],"polygonId":"polygon-000269","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":187,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000270","materialId":"source-lit-149-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,62.5,-100,-87.5,1],"polygonId":"polygon-000270","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":218,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000271","materialId":"source-lit-150-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,112.5,-100,-87.5,1],"polygonId":"polygon-000271","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":249,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000272","materialId":"source-lit-163-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-112.5,-100,-62.5,1],"polygonId":"polygon-000272","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":280,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000273","materialId":"source-lit-163-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,-62.5,-100,-62.5,1],"polygonId":"polygon-000273","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":311,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000274","materialId":"source-lit-161-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-87.5,-100,-62.5,1],"polygonId":"polygon-000274","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":342,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000275","materialId":"source-lit-162-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,-37.5,-100,-62.5,1],"polygonId":"polygon-000275","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":373,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000276","materialId":"source-lit-160-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-62.5,-100,-62.5,1],"polygonId":"polygon-000276","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":404,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000277","materialId":"source-lit-160-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,-12.5,-100,-62.5,1],"polygonId":"polygon-000277","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":435,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000278","materialId":"source-lit-158-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-37.5,-100,-62.5,1],"polygonId":"polygon-000278","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":466,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000279","materialId":"source-lit-158-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,12.5,-100,-62.5,1],"polygonId":"polygon-000279","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":497,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000280","materialId":"source-lit-156-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-12.5,-100,-62.5,1],"polygonId":"polygon-000280","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":528,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000281","materialId":"source-lit-157-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,37.5,-100,-62.5,1],"polygonId":"polygon-000281","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":559,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000282","materialId":"source-lit-155-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,12.5,-100,-62.5,1],"polygonId":"polygon-000282","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":590,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000283","materialId":"source-lit-155-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,62.5,-100,-62.5,1],"polygonId":"polygon-000283","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":621,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000284","materialId":"source-lit-153-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,37.5,-100,-62.5,1],"polygonId":"polygon-000284","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":652,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000285","materialId":"source-lit-153-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,87.5,-100,-62.5,1],"polygonId":"polygon-000285","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":683,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000286","materialId":"source-lit-152-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,62.5,-100,-62.5,1],"polygonId":"polygon-000286","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":714,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000287","materialId":"source-lit-152-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,112.5,-100,-62.5,1],"polygonId":"polygon-000287","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":745,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000288","materialId":"source-lit-166-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-112.5,-100,-37.5,1],"polygonId":"polygon-000288","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":776,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000289","materialId":"source-lit-166-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,-62.5,-100,-37.5,1],"polygonId":"polygon-000289","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":807,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000290","materialId":"source-lit-164-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-87.5,-100,-37.5,1],"polygonId":"polygon-000290","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":838,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000291","materialId":"source-lit-165-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,-37.5,-100,-37.5,1],"polygonId":"polygon-000291","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":869,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000292","materialId":"source-lit-162-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-62.5,-100,-37.5,1],"polygonId":"polygon-000292","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":900,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000293","materialId":"source-lit-163-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,-12.5,-100,-37.5,1],"polygonId":"polygon-000293","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":931,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000294","materialId":"source-lit-161-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-37.5,-100,-37.5,1],"polygonId":"polygon-000294","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":962,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000295","materialId":"source-lit-161-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,12.5,-100,-37.5,1],"polygonId":"polygon-000295","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":993,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000296","materialId":"source-lit-159-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-12.5,-100,-37.5,1],"polygonId":"polygon-000296","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1024,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000297","materialId":"source-lit-159-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,37.5,-100,-37.5,1],"polygonId":"polygon-000297","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1055,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000298","materialId":"source-lit-157-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,12.5,-100,-37.5,1],"polygonId":"polygon-000298","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1086,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000299","materialId":"source-lit-157-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,62.5,-100,-37.5,1],"polygonId":"polygon-000299","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1117,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000300","materialId":"source-lit-155-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,37.5,-100,-37.5,1],"polygonId":"polygon-000300","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1148,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000301","materialId":"source-lit-156-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,87.5,-100,-37.5,1],"polygonId":"polygon-000301","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1179,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000302","materialId":"source-lit-154-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,62.5,-100,-37.5,1],"polygonId":"polygon-000302","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1210,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000303","materialId":"source-lit-154-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,112.5,-100,-37.5,1],"polygonId":"polygon-000303","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1241,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000304","materialId":"source-lit-169-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-112.5,-100,-12.5,1],"polygonId":"polygon-000304","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1272,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000305","materialId":"source-lit-170-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,-62.5,-100,-12.5,1],"polygonId":"polygon-000305","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1303,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000306","materialId":"source-lit-167-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-87.5,-100,-12.5,1],"polygonId":"polygon-000306","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1334,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000307","materialId":"source-lit-168-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,-37.5,-100,-12.5,1],"polygonId":"polygon-000307","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1365,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000308","materialId":"source-lit-165-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-62.5,-100,-12.5,1],"polygonId":"polygon-000308","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1396,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000309","materialId":"source-lit-166-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,-12.5,-100,-12.5,1],"polygonId":"polygon-000309","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1427,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000310","materialId":"source-lit-164-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-37.5,-100,-12.5,1],"polygonId":"polygon-000310","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1458,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000311","materialId":"source-lit-164-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,12.5,-100,-12.5,1],"polygonId":"polygon-000311","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1489,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000312","materialId":"source-lit-162-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-12.5,-100,-12.5,1],"polygonId":"polygon-000312","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1520,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000313","materialId":"source-lit-162-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,37.5,-100,-12.5,1],"polygonId":"polygon-000313","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1551,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000314","materialId":"source-lit-160-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,12.5,-100,-12.5,1],"polygonId":"polygon-000314","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1582,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000315","materialId":"source-lit-160-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,62.5,-100,-12.5,1],"polygonId":"polygon-000315","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1613,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000316","materialId":"source-lit-158-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,37.5,-100,-12.5,1],"polygonId":"polygon-000316","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1644,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000317","materialId":"source-lit-158-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,87.5,-100,-12.5,1],"polygonId":"polygon-000317","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1675,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000318","materialId":"source-lit-156-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,62.5,-100,-12.5,1],"polygonId":"polygon-000318","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1706,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000319","materialId":"source-lit-156-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,112.5,-100,-12.5,1],"polygonId":"polygon-000319","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1737,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000320","materialId":"source-lit-173-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-112.5,-100,12.5,1],"polygonId":"polygon-000320","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1768,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000321","materialId":"source-lit-173-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,-62.5,-100,12.5,1],"polygonId":"polygon-000321","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1799,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000322","materialId":"source-lit-171-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-87.5,-100,12.5,1],"polygonId":"polygon-000322","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1830,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000323","materialId":"source-lit-171-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,-37.5,-100,12.5,1],"polygonId":"polygon-000323","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1861,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000324","materialId":"source-lit-169-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-62.5,-100,12.5,1],"polygonId":"polygon-000324","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1892,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000325","materialId":"source-lit-169-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,-12.5,-100,12.5,1],"polygonId":"polygon-000325","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1923,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000326","materialId":"source-lit-167-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-37.5,-100,12.5,1],"polygonId":"polygon-000326","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1954,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000327","materialId":"source-lit-167-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,12.5,-100,12.5,1],"polygonId":"polygon-000327","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1985,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000328","materialId":"source-lit-164-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-12.5,-100,12.5,1],"polygonId":"polygon-000328","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2016,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000329","materialId":"source-lit-165-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,37.5,-100,12.5,1],"polygonId":"polygon-000329","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2047,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000330","materialId":"source-lit-162-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,12.5,-100,12.5,1],"polygonId":"polygon-000330","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2078,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000331","materialId":"source-lit-163-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,62.5,-100,12.5,1],"polygonId":"polygon-000331","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2109,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000332","materialId":"source-lit-160-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,37.5,-100,12.5,1],"polygonId":"polygon-000332","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2140,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000333","materialId":"source-lit-161-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,87.5,-100,12.5,1],"polygonId":"polygon-000333","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2171,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000334","materialId":"source-lit-158-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,62.5,-100,12.5,1],"polygonId":"polygon-000334","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2202,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000335","materialId":"source-lit-159-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,112.5,-100,12.5,1],"polygonId":"polygon-000335","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2233,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000336","materialId":"source-lit-176-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-112.5,-100,37.5,1],"polygonId":"polygon-000336","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2264,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000337","materialId":"source-lit-177-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,-62.5,-100,37.5,1],"polygonId":"polygon-000337","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2295,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000338","materialId":"source-lit-174-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-87.5,-100,37.5,1],"polygonId":"polygon-000338","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2326,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000339","materialId":"source-lit-175-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,-37.5,-100,37.5,1],"polygonId":"polygon-000339","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2357,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000340","materialId":"source-lit-172-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-62.5,-100,37.5,1],"polygonId":"polygon-000340","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2388,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000341","materialId":"source-lit-172-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,-12.5,-100,37.5,1],"polygonId":"polygon-000341","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2419,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000342","materialId":"source-lit-170-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-37.5,-100,37.5,1],"polygonId":"polygon-000342","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2450,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000343","materialId":"source-lit-170-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,12.5,-100,37.5,1],"polygonId":"polygon-000343","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2481,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000344","materialId":"source-lit-167-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-12.5,-100,37.5,1],"polygonId":"polygon-000344","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2512,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000345","materialId":"source-lit-168-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,37.5,-100,37.5,1],"polygonId":"polygon-000345","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2543,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000346","materialId":"source-lit-165-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,12.5,-100,37.5,1],"polygonId":"polygon-000346","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2574,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000347","materialId":"source-lit-165-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,62.5,-100,37.5,1],"polygonId":"polygon-000347","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2605,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000348","materialId":"source-lit-163-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,37.5,-100,37.5,1],"polygonId":"polygon-000348","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2636,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000349","materialId":"source-lit-163-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,87.5,-100,37.5,1],"polygonId":"polygon-000349","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2667,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000350","materialId":"source-lit-161-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,62.5,-100,37.5,1],"polygonId":"polygon-000350","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2698,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000351","materialId":"source-lit-161-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,112.5,-100,37.5,1],"polygonId":"polygon-000351","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2729,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000352","materialId":"source-lit-180-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-112.5,-100,62.5,1],"polygonId":"polygon-000352","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2760,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000353","materialId":"source-lit-181-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,-62.5,-100,62.5,1],"polygonId":"polygon-000353","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2791,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000354","materialId":"source-lit-178-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-87.5,-100,62.5,1],"polygonId":"polygon-000354","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2822,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000355","materialId":"source-lit-178-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,-37.5,-100,62.5,1],"polygonId":"polygon-000355","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2853,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000356","materialId":"source-lit-175-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-62.5,-100,62.5,1],"polygonId":"polygon-000356","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2884,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000357","materialId":"source-lit-176-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,-12.5,-100,62.5,1],"polygonId":"polygon-000357","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2915,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000358","materialId":"source-lit-173-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-37.5,-100,62.5,1],"polygonId":"polygon-000358","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2946,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000359","materialId":"source-lit-173-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,12.5,-100,62.5,1],"polygonId":"polygon-000359","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2977,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000360","materialId":"source-lit-171-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-12.5,-100,62.5,1],"polygonId":"polygon-000360","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3008,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000361","materialId":"source-lit-171-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,37.5,-100,62.5,1],"polygonId":"polygon-000361","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3039,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000362","materialId":"source-lit-168-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,12.5,-100,62.5,1],"polygonId":"polygon-000362","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3070,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000363","materialId":"source-lit-168-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,62.5,-100,62.5,1],"polygonId":"polygon-000363","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3101,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000364","materialId":"source-lit-166-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,37.5,-100,62.5,1],"polygonId":"polygon-000364","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3132,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000365","materialId":"source-lit-166-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,87.5,-100,62.5,1],"polygonId":"polygon-000365","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3163,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000366","materialId":"source-lit-164-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,62.5,-100,62.5,1],"polygonId":"polygon-000366","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3194,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000367","materialId":"source-lit-164-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,112.5,-100,62.5,1],"polygonId":"polygon-000367","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3225,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000368","materialId":"source-lit-184-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-112.5,-100,87.5,1],"polygonId":"polygon-000368","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3256,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000369","materialId":"source-lit-185-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,-62.5,-100,87.5,1],"polygonId":"polygon-000369","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3287,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000370","materialId":"source-lit-182-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-87.5,-100,87.5,1],"polygonId":"polygon-000370","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3318,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000371","materialId":"source-lit-182-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,-37.5,-100,87.5,1],"polygonId":"polygon-000371","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3349,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000372","materialId":"source-lit-179-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-62.5,-100,87.5,1],"polygonId":"polygon-000372","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3380,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000373","materialId":"source-lit-179-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,-12.5,-100,87.5,1],"polygonId":"polygon-000373","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3411,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000374","materialId":"source-lit-176-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-37.5,-100,87.5,1],"polygonId":"polygon-000374","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3442,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000375","materialId":"source-lit-177-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,12.5,-100,87.5,1],"polygonId":"polygon-000375","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3473,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000376","materialId":"source-lit-174-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,-12.5,-100,87.5,1],"polygonId":"polygon-000376","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3504,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000377","materialId":"source-lit-174-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,37.5,-100,87.5,1],"polygonId":"polygon-000377","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3535,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000378","materialId":"source-lit-171-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,12.5,-100,87.5,1],"polygonId":"polygon-000378","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3566,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000379","materialId":"source-lit-171-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,62.5,-100,87.5,1],"polygonId":"polygon-000379","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3597,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000380","materialId":"source-lit-169-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,37.5,-100,87.5,1],"polygonId":"polygon-000380","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3628,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000381","materialId":"source-lit-169-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,87.5,-100,87.5,1],"polygonId":"polygon-000381","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3659,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000382","materialId":"source-lit-166-000-000","matrix":[0.78125,0,-0.78125,0,0.390625,0,0.390625,0,0,-1,0,0,62.5,-100,87.5,1],"polygonId":"polygon-000382","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3690,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000383","materialId":"source-lit-166-000-000","matrix":[-0.78125,0,0.78125,0,-0.390625,0,-0.390625,0,0,-1,0,0,112.5,-100,87.5,1],"polygonId":"polygon-000383","shapeId":"shape-0002-morph-targets-box-2","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3721,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000384","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-112.5,100,87.5,1],"polygonId":"polygon-000384","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3752,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000385","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,-62.5,100,87.5,1],"polygonId":"polygon-000385","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3783,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000386","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-87.5,100,87.5,1],"polygonId":"polygon-000386","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3814,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000387","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,-37.5,100,87.5,1],"polygonId":"polygon-000387","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3845,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000388","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-62.5,100,87.5,1],"polygonId":"polygon-000388","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3876,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000389","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,-12.5,100,87.5,1],"polygonId":"polygon-000389","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3907,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000390","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-37.5,100,87.5,1],"polygonId":"polygon-000390","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3938,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000391","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,12.5,100,87.5,1],"polygonId":"polygon-000391","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3969,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000392","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-12.5,100,87.5,1],"polygonId":"polygon-000392","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":4000,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000393","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,37.5,100,87.5,1],"polygonId":"polygon-000393","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":4031,"y":63},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000394","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,12.5,100,87.5,1],"polygonId":"polygon-000394","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":4062,"y":63},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000395","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,62.5,100,87.5,1],"polygonId":"polygon-000395","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000396","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,37.5,100,87.5,1],"polygonId":"polygon-000396","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":32,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000397","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,87.5,100,87.5,1],"polygonId":"polygon-000397","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":63,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000398","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,62.5,100,87.5,1],"polygonId":"polygon-000398","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":94,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000399","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,112.5,100,87.5,1],"polygonId":"polygon-000399","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":125,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000400","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-112.5,100,62.5,1],"polygonId":"polygon-000400","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":156,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000401","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,-62.5,100,62.5,1],"polygonId":"polygon-000401","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":187,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000402","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-87.5,100,62.5,1],"polygonId":"polygon-000402","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":218,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000403","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,-37.5,100,62.5,1],"polygonId":"polygon-000403","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":249,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000404","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-62.5,100,62.5,1],"polygonId":"polygon-000404","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":280,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000405","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,-12.5,100,62.5,1],"polygonId":"polygon-000405","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":311,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000406","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-37.5,100,62.5,1],"polygonId":"polygon-000406","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":342,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000407","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,12.5,100,62.5,1],"polygonId":"polygon-000407","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":373,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000408","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-12.5,100,62.5,1],"polygonId":"polygon-000408","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":404,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000409","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,37.5,100,62.5,1],"polygonId":"polygon-000409","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":435,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000410","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,12.5,100,62.5,1],"polygonId":"polygon-000410","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":466,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000411","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,62.5,100,62.5,1],"polygonId":"polygon-000411","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":497,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000412","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,37.5,100,62.5,1],"polygonId":"polygon-000412","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":528,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000413","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,87.5,100,62.5,1],"polygonId":"polygon-000413","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":559,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000414","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,62.5,100,62.5,1],"polygonId":"polygon-000414","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":590,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000415","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,112.5,100,62.5,1],"polygonId":"polygon-000415","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":621,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000416","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-112.5,100,37.5,1],"polygonId":"polygon-000416","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":652,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000417","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,-62.5,100,37.5,1],"polygonId":"polygon-000417","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":683,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000418","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-87.5,100,37.5,1],"polygonId":"polygon-000418","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":714,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000419","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,-37.5,100,37.5,1],"polygonId":"polygon-000419","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":745,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000420","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-62.5,100,37.5,1],"polygonId":"polygon-000420","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":776,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000421","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,-12.5,100,37.5,1],"polygonId":"polygon-000421","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":807,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000422","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-37.5,100,37.5,1],"polygonId":"polygon-000422","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":838,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000423","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,12.5,100,37.5,1],"polygonId":"polygon-000423","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":869,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000424","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-12.5,100,37.5,1],"polygonId":"polygon-000424","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":900,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000425","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,37.5,100,37.5,1],"polygonId":"polygon-000425","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":931,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000426","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,12.5,100,37.5,1],"polygonId":"polygon-000426","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":962,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000427","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,62.5,100,37.5,1],"polygonId":"polygon-000427","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":993,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000428","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,37.5,100,37.5,1],"polygonId":"polygon-000428","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1024,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000429","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,87.5,100,37.5,1],"polygonId":"polygon-000429","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1055,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000430","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,62.5,100,37.5,1],"polygonId":"polygon-000430","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1086,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000431","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,112.5,100,37.5,1],"polygonId":"polygon-000431","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1117,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000432","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-112.5,100,12.5,1],"polygonId":"polygon-000432","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1148,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000433","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,-62.5,100,12.5,1],"polygonId":"polygon-000433","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1179,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000434","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-87.5,100,12.5,1],"polygonId":"polygon-000434","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1210,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000435","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,-37.5,100,12.5,1],"polygonId":"polygon-000435","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1241,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000436","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-62.5,100,12.5,1],"polygonId":"polygon-000436","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1272,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000437","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,-12.5,100,12.5,1],"polygonId":"polygon-000437","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1303,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000438","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-37.5,100,12.5,1],"polygonId":"polygon-000438","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1334,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000439","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,12.5,100,12.5,1],"polygonId":"polygon-000439","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1365,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000440","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-12.5,100,12.5,1],"polygonId":"polygon-000440","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1396,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000441","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,37.5,100,12.5,1],"polygonId":"polygon-000441","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1427,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000442","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,12.5,100,12.5,1],"polygonId":"polygon-000442","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1458,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000443","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,62.5,100,12.5,1],"polygonId":"polygon-000443","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1489,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000444","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,37.5,100,12.5,1],"polygonId":"polygon-000444","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1520,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000445","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,87.5,100,12.5,1],"polygonId":"polygon-000445","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1551,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000446","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,62.5,100,12.5,1],"polygonId":"polygon-000446","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1582,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000447","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,112.5,100,12.5,1],"polygonId":"polygon-000447","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1613,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000448","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-112.5,100,-12.5,1],"polygonId":"polygon-000448","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1644,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000449","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,-62.5,100,-12.5,1],"polygonId":"polygon-000449","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1675,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000450","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-87.5,100,-12.5,1],"polygonId":"polygon-000450","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1706,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000451","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,-37.5,100,-12.5,1],"polygonId":"polygon-000451","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1737,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000452","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-62.5,100,-12.5,1],"polygonId":"polygon-000452","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1768,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000453","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,-12.5,100,-12.5,1],"polygonId":"polygon-000453","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1799,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000454","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-37.5,100,-12.5,1],"polygonId":"polygon-000454","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1830,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000455","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,12.5,100,-12.5,1],"polygonId":"polygon-000455","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1861,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000456","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-12.5,100,-12.5,1],"polygonId":"polygon-000456","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1892,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000457","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,37.5,100,-12.5,1],"polygonId":"polygon-000457","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1923,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000458","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,12.5,100,-12.5,1],"polygonId":"polygon-000458","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1954,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000459","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,62.5,100,-12.5,1],"polygonId":"polygon-000459","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1985,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000460","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,37.5,100,-12.5,1],"polygonId":"polygon-000460","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2016,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000461","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,87.5,100,-12.5,1],"polygonId":"polygon-000461","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2047,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000462","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,62.5,100,-12.5,1],"polygonId":"polygon-000462","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2078,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000463","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,112.5,100,-12.5,1],"polygonId":"polygon-000463","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2109,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000464","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-112.5,100,-37.5,1],"polygonId":"polygon-000464","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2140,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000465","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,-62.5,100,-37.5,1],"polygonId":"polygon-000465","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2171,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000466","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-87.5,100,-37.5,1],"polygonId":"polygon-000466","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2202,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000467","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,-37.5,100,-37.5,1],"polygonId":"polygon-000467","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2233,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000468","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-62.5,100,-37.5,1],"polygonId":"polygon-000468","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2264,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000469","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,-12.5,100,-37.5,1],"polygonId":"polygon-000469","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2295,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000470","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-37.5,100,-37.5,1],"polygonId":"polygon-000470","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2326,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000471","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,12.5,100,-37.5,1],"polygonId":"polygon-000471","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2357,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000472","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-12.5,100,-37.5,1],"polygonId":"polygon-000472","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2388,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000473","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,37.5,100,-37.5,1],"polygonId":"polygon-000473","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2419,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000474","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,12.5,100,-37.5,1],"polygonId":"polygon-000474","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2450,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000475","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,62.5,100,-37.5,1],"polygonId":"polygon-000475","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2481,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000476","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,37.5,100,-37.5,1],"polygonId":"polygon-000476","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2512,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000477","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,87.5,100,-37.5,1],"polygonId":"polygon-000477","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2543,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000478","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,62.5,100,-37.5,1],"polygonId":"polygon-000478","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2574,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000479","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,112.5,100,-37.5,1],"polygonId":"polygon-000479","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2605,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000480","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-112.5,100,-62.5,1],"polygonId":"polygon-000480","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2636,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000481","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,-62.5,100,-62.5,1],"polygonId":"polygon-000481","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2667,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000482","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-87.5,100,-62.5,1],"polygonId":"polygon-000482","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2698,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000483","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,-37.5,100,-62.5,1],"polygonId":"polygon-000483","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2729,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000484","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-62.5,100,-62.5,1],"polygonId":"polygon-000484","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2760,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000485","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,-12.5,100,-62.5,1],"polygonId":"polygon-000485","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2791,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000486","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-37.5,100,-62.5,1],"polygonId":"polygon-000486","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2822,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000487","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,12.5,100,-62.5,1],"polygonId":"polygon-000487","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2853,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000488","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-12.5,100,-62.5,1],"polygonId":"polygon-000488","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2884,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000489","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,37.5,100,-62.5,1],"polygonId":"polygon-000489","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2915,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000490","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,12.5,100,-62.5,1],"polygonId":"polygon-000490","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2946,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000491","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,62.5,100,-62.5,1],"polygonId":"polygon-000491","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2977,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000492","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,37.5,100,-62.5,1],"polygonId":"polygon-000492","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3008,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000493","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,87.5,100,-62.5,1],"polygonId":"polygon-000493","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3039,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000494","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,62.5,100,-62.5,1],"polygonId":"polygon-000494","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3070,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000495","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,112.5,100,-62.5,1],"polygonId":"polygon-000495","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3101,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000496","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-112.5,100,-87.5,1],"polygonId":"polygon-000496","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3132,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000497","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,-62.5,100,-87.5,1],"polygonId":"polygon-000497","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3163,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000498","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-87.5,100,-87.5,1],"polygonId":"polygon-000498","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3194,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000499","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,-37.5,100,-87.5,1],"polygonId":"polygon-000499","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3225,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000500","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-62.5,100,-87.5,1],"polygonId":"polygon-000500","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3256,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000501","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,-12.5,100,-87.5,1],"polygonId":"polygon-000501","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3287,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000502","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-37.5,100,-87.5,1],"polygonId":"polygon-000502","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3318,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000503","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,12.5,100,-87.5,1],"polygonId":"polygon-000503","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3349,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000504","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,-12.5,100,-87.5,1],"polygonId":"polygon-000504","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3380,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000505","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,37.5,100,-87.5,1],"polygonId":"polygon-000505","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3411,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000506","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,12.5,100,-87.5,1],"polygonId":"polygon-000506","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3442,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000507","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,62.5,100,-87.5,1],"polygonId":"polygon-000507","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3473,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000508","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,37.5,100,-87.5,1],"polygonId":"polygon-000508","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3504,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000509","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,87.5,100,-87.5,1],"polygonId":"polygon-000509","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3535,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000510","materialId":"source-lit-101-000-000","matrix":[0.78125,0,0.78125,0,0.390625,0,-0.390625,0,0,1,0,0,62.5,100,-87.5,1],"polygonId":"polygon-000510","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3566,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000511","materialId":"source-lit-101-000-000","matrix":[-0.78125,0,-0.78125,0,-0.390625,0,0.390625,0,0,1,0,0,112.5,100,-87.5,1],"polygonId":"polygon-000511","shapeId":"shape-0003-morph-targets-box-3","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3597,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000512","materialId":"source-lit-234-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-112.5,-87.5,100,1],"polygonId":"polygon-000512","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3628,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000513","materialId":"source-lit-232-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,-62.5,-87.5,100,1],"polygonId":"polygon-000513","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3659,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000514","materialId":"source-lit-230-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-87.5,-87.5,100,1],"polygonId":"polygon-000514","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3690,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000515","materialId":"source-lit-228-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,-37.5,-87.5,100,1],"polygonId":"polygon-000515","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3721,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000516","materialId":"source-lit-226-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-62.5,-87.5,100,1],"polygonId":"polygon-000516","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3752,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000517","materialId":"source-lit-224-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,-12.5,-87.5,100,1],"polygonId":"polygon-000517","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3783,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000518","materialId":"source-lit-222-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-37.5,-87.5,100,1],"polygonId":"polygon-000518","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3814,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000519","materialId":"source-lit-220-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,12.5,-87.5,100,1],"polygonId":"polygon-000519","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3845,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000520","materialId":"source-lit-219-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-12.5,-87.5,100,1],"polygonId":"polygon-000520","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3876,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000521","materialId":"source-lit-216-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,37.5,-87.5,100,1],"polygonId":"polygon-000521","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3907,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000522","materialId":"source-lit-215-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,12.5,-87.5,100,1],"polygonId":"polygon-000522","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3938,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000523","materialId":"source-lit-213-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,62.5,-87.5,100,1],"polygonId":"polygon-000523","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3969,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000524","materialId":"source-lit-211-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,37.5,-87.5,100,1],"polygonId":"polygon-000524","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":4000,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000525","materialId":"source-lit-209-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,87.5,-87.5,100,1],"polygonId":"polygon-000525","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":4031,"y":94},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000526","materialId":"source-lit-207-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,62.5,-87.5,100,1],"polygonId":"polygon-000526","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":4062,"y":94},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000527","materialId":"source-lit-205-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,112.5,-87.5,100,1],"polygonId":"polygon-000527","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000528","materialId":"source-lit-231-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-112.5,-62.5,100,1],"polygonId":"polygon-000528","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":32,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000529","materialId":"source-lit-228-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,-62.5,-62.5,100,1],"polygonId":"polygon-000529","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":63,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000530","materialId":"source-lit-227-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-87.5,-62.5,100,1],"polygonId":"polygon-000530","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":94,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000531","materialId":"source-lit-225-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,-37.5,-62.5,100,1],"polygonId":"polygon-000531","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":125,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000532","materialId":"source-lit-223-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-62.5,-62.5,100,1],"polygonId":"polygon-000532","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":156,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000533","materialId":"source-lit-221-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,-12.5,-62.5,100,1],"polygonId":"polygon-000533","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":187,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000534","materialId":"source-lit-220-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-37.5,-62.5,100,1],"polygonId":"polygon-000534","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":218,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000535","materialId":"source-lit-217-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,12.5,-62.5,100,1],"polygonId":"polygon-000535","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":249,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000536","materialId":"source-lit-216-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-12.5,-62.5,100,1],"polygonId":"polygon-000536","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":280,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000537","materialId":"source-lit-214-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,37.5,-62.5,100,1],"polygonId":"polygon-000537","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":311,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000538","materialId":"source-lit-212-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,12.5,-62.5,100,1],"polygonId":"polygon-000538","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":342,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000539","materialId":"source-lit-210-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,62.5,-62.5,100,1],"polygonId":"polygon-000539","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":373,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000540","materialId":"source-lit-209-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,37.5,-62.5,100,1],"polygonId":"polygon-000540","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":404,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000541","materialId":"source-lit-207-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,87.5,-62.5,100,1],"polygonId":"polygon-000541","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":435,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000542","materialId":"source-lit-205-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,62.5,-62.5,100,1],"polygonId":"polygon-000542","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":466,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000543","materialId":"source-lit-203-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,112.5,-62.5,100,1],"polygonId":"polygon-000543","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":497,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000544","materialId":"source-lit-227-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-112.5,-37.5,100,1],"polygonId":"polygon-000544","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":528,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000545","materialId":"source-lit-225-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,-62.5,-37.5,100,1],"polygonId":"polygon-000545","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":559,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000546","materialId":"source-lit-224-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-87.5,-37.5,100,1],"polygonId":"polygon-000546","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":590,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000547","materialId":"source-lit-222-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,-37.5,-37.5,100,1],"polygonId":"polygon-000547","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":621,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000548","materialId":"source-lit-220-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-62.5,-37.5,100,1],"polygonId":"polygon-000548","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":652,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000549","materialId":"source-lit-218-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,-12.5,-37.5,100,1],"polygonId":"polygon-000549","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":683,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000550","materialId":"source-lit-217-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-37.5,-37.5,100,1],"polygonId":"polygon-000550","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":714,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000551","materialId":"source-lit-215-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,12.5,-37.5,100,1],"polygonId":"polygon-000551","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":745,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000552","materialId":"source-lit-213-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-12.5,-37.5,100,1],"polygonId":"polygon-000552","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":776,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000553","materialId":"source-lit-211-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,37.5,-37.5,100,1],"polygonId":"polygon-000553","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":807,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000554","materialId":"source-lit-210-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,12.5,-37.5,100,1],"polygonId":"polygon-000554","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":838,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000555","materialId":"source-lit-208-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,62.5,-37.5,100,1],"polygonId":"polygon-000555","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":869,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000556","materialId":"source-lit-206-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,37.5,-37.5,100,1],"polygonId":"polygon-000556","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":900,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000557","materialId":"source-lit-204-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,87.5,-37.5,100,1],"polygonId":"polygon-000557","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":931,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000558","materialId":"source-lit-203-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,62.5,-37.5,100,1],"polygonId":"polygon-000558","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":962,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000559","materialId":"source-lit-201-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,112.5,-37.5,100,1],"polygonId":"polygon-000559","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":993,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000560","materialId":"source-lit-224-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-112.5,-12.5,100,1],"polygonId":"polygon-000560","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1024,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000561","materialId":"source-lit-222-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,-62.5,-12.5,100,1],"polygonId":"polygon-000561","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1055,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000562","materialId":"source-lit-221-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-87.5,-12.5,100,1],"polygonId":"polygon-000562","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1086,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000563","materialId":"source-lit-219-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,-37.5,-12.5,100,1],"polygonId":"polygon-000563","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1117,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000564","materialId":"source-lit-217-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-62.5,-12.5,100,1],"polygonId":"polygon-000564","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1148,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000565","materialId":"source-lit-215-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,-12.5,-12.5,100,1],"polygonId":"polygon-000565","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1179,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000566","materialId":"source-lit-214-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-37.5,-12.5,100,1],"polygonId":"polygon-000566","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1210,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000567","materialId":"source-lit-212-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,12.5,-12.5,100,1],"polygonId":"polygon-000567","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1241,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000568","materialId":"source-lit-211-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-12.5,-12.5,100,1],"polygonId":"polygon-000568","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1272,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000569","materialId":"source-lit-209-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,37.5,-12.5,100,1],"polygonId":"polygon-000569","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1303,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000570","materialId":"source-lit-207-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,12.5,-12.5,100,1],"polygonId":"polygon-000570","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1334,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000571","materialId":"source-lit-205-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,62.5,-12.5,100,1],"polygonId":"polygon-000571","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1365,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000572","materialId":"source-lit-204-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,37.5,-12.5,100,1],"polygonId":"polygon-000572","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1396,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000573","materialId":"source-lit-202-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,87.5,-12.5,100,1],"polygonId":"polygon-000573","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1427,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000574","materialId":"source-lit-201-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,62.5,-12.5,100,1],"polygonId":"polygon-000574","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1458,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000575","materialId":"source-lit-199-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,112.5,-12.5,100,1],"polygonId":"polygon-000575","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1489,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000576","materialId":"source-lit-221-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-112.5,12.5,100,1],"polygonId":"polygon-000576","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1520,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000577","materialId":"source-lit-219-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,-62.5,12.5,100,1],"polygonId":"polygon-000577","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1551,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000578","materialId":"source-lit-217-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-87.5,12.5,100,1],"polygonId":"polygon-000578","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1582,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000579","materialId":"source-lit-215-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,-37.5,12.5,100,1],"polygonId":"polygon-000579","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1613,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000580","materialId":"source-lit-214-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-62.5,12.5,100,1],"polygonId":"polygon-000580","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1644,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000581","materialId":"source-lit-212-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,-12.5,12.5,100,1],"polygonId":"polygon-000581","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1675,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000582","materialId":"source-lit-211-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-37.5,12.5,100,1],"polygonId":"polygon-000582","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1706,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000583","materialId":"source-lit-209-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,12.5,12.5,100,1],"polygonId":"polygon-000583","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1737,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000584","materialId":"source-lit-208-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-12.5,12.5,100,1],"polygonId":"polygon-000584","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1768,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000585","materialId":"source-lit-206-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,37.5,12.5,100,1],"polygonId":"polygon-000585","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1799,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000586","materialId":"source-lit-205-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,12.5,12.5,100,1],"polygonId":"polygon-000586","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1830,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000587","materialId":"source-lit-203-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,62.5,12.5,100,1],"polygonId":"polygon-000587","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1861,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000588","materialId":"source-lit-201-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,37.5,12.5,100,1],"polygonId":"polygon-000588","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1892,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000589","materialId":"source-lit-199-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,87.5,12.5,100,1],"polygonId":"polygon-000589","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1923,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000590","materialId":"source-lit-198-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,62.5,12.5,100,1],"polygonId":"polygon-000590","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1954,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000591","materialId":"source-lit-196-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,112.5,12.5,100,1],"polygonId":"polygon-000591","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1985,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000592","materialId":"source-lit-217-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-112.5,37.5,100,1],"polygonId":"polygon-000592","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2016,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000593","materialId":"source-lit-215-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,-62.5,37.5,100,1],"polygonId":"polygon-000593","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2047,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000594","materialId":"source-lit-214-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-87.5,37.5,100,1],"polygonId":"polygon-000594","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2078,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000595","materialId":"source-lit-212-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,-37.5,37.5,100,1],"polygonId":"polygon-000595","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2109,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000596","materialId":"source-lit-211-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-62.5,37.5,100,1],"polygonId":"polygon-000596","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2140,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000597","materialId":"source-lit-209-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,-12.5,37.5,100,1],"polygonId":"polygon-000597","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2171,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000598","materialId":"source-lit-208-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-37.5,37.5,100,1],"polygonId":"polygon-000598","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2202,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000599","materialId":"source-lit-206-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,12.5,37.5,100,1],"polygonId":"polygon-000599","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2233,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000600","materialId":"source-lit-205-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-12.5,37.5,100,1],"polygonId":"polygon-000600","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2264,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000601","materialId":"source-lit-203-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,37.5,37.5,100,1],"polygonId":"polygon-000601","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2295,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000602","materialId":"source-lit-202-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,12.5,37.5,100,1],"polygonId":"polygon-000602","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2326,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000603","materialId":"source-lit-200-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,62.5,37.5,100,1],"polygonId":"polygon-000603","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2357,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000604","materialId":"source-lit-199-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,37.5,37.5,100,1],"polygonId":"polygon-000604","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2388,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000605","materialId":"source-lit-197-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,87.5,37.5,100,1],"polygonId":"polygon-000605","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2419,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000606","materialId":"source-lit-196-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,62.5,37.5,100,1],"polygonId":"polygon-000606","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2450,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000607","materialId":"source-lit-194-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,112.5,37.5,100,1],"polygonId":"polygon-000607","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2481,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000608","materialId":"source-lit-214-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-112.5,62.5,100,1],"polygonId":"polygon-000608","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2512,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000609","materialId":"source-lit-212-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,-62.5,62.5,100,1],"polygonId":"polygon-000609","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2543,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000610","materialId":"source-lit-211-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-87.5,62.5,100,1],"polygonId":"polygon-000610","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2574,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000611","materialId":"source-lit-209-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,-37.5,62.5,100,1],"polygonId":"polygon-000611","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2605,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000612","materialId":"source-lit-208-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-62.5,62.5,100,1],"polygonId":"polygon-000612","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2636,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000613","materialId":"source-lit-206-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,-12.5,62.5,100,1],"polygonId":"polygon-000613","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2667,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000614","materialId":"source-lit-205-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-37.5,62.5,100,1],"polygonId":"polygon-000614","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2698,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000615","materialId":"source-lit-203-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,12.5,62.5,100,1],"polygonId":"polygon-000615","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2729,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000616","materialId":"source-lit-202-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-12.5,62.5,100,1],"polygonId":"polygon-000616","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2760,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000617","materialId":"source-lit-200-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,37.5,62.5,100,1],"polygonId":"polygon-000617","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2791,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000618","materialId":"source-lit-199-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,12.5,62.5,100,1],"polygonId":"polygon-000618","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2822,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000619","materialId":"source-lit-197-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,62.5,62.5,100,1],"polygonId":"polygon-000619","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2853,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000620","materialId":"source-lit-196-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,37.5,62.5,100,1],"polygonId":"polygon-000620","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2884,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000621","materialId":"source-lit-195-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,87.5,62.5,100,1],"polygonId":"polygon-000621","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2915,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000622","materialId":"source-lit-193-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,62.5,62.5,100,1],"polygonId":"polygon-000622","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2946,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000623","materialId":"source-lit-192-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,112.5,62.5,100,1],"polygonId":"polygon-000623","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2977,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000624","materialId":"source-lit-210-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-112.5,87.5,100,1],"polygonId":"polygon-000624","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3008,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000625","materialId":"source-lit-208-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,-62.5,87.5,100,1],"polygonId":"polygon-000625","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3039,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000626","materialId":"source-lit-208-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-87.5,87.5,100,1],"polygonId":"polygon-000626","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3070,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000627","materialId":"source-lit-206-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,-37.5,87.5,100,1],"polygonId":"polygon-000627","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3101,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000628","materialId":"source-lit-205-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-62.5,87.5,100,1],"polygonId":"polygon-000628","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3132,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000629","materialId":"source-lit-203-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,-12.5,87.5,100,1],"polygonId":"polygon-000629","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3163,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000630","materialId":"source-lit-202-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-37.5,87.5,100,1],"polygonId":"polygon-000630","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3194,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000631","materialId":"source-lit-200-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,12.5,87.5,100,1],"polygonId":"polygon-000631","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3225,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000632","materialId":"source-lit-199-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,-12.5,87.5,100,1],"polygonId":"polygon-000632","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3256,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000633","materialId":"source-lit-198-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,37.5,87.5,100,1],"polygonId":"polygon-000633","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3287,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000634","materialId":"source-lit-197-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,12.5,87.5,100,1],"polygonId":"polygon-000634","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3318,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000635","materialId":"source-lit-195-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,62.5,87.5,100,1],"polygonId":"polygon-000635","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3349,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000636","materialId":"source-lit-194-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,37.5,87.5,100,1],"polygonId":"polygon-000636","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3380,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000637","materialId":"source-lit-192-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,87.5,87.5,100,1],"polygonId":"polygon-000637","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3411,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000638","materialId":"source-lit-191-000-000","matrix":[0.78125,-0.78125,0,0,0.390625,0.390625,0,0,0,0,1,0,62.5,87.5,100,1],"polygonId":"polygon-000638","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3442,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000639","materialId":"source-lit-189-000-000","matrix":[-0.78125,0.78125,0,0,-0.390625,-0.390625,0,0,0,0,1,0,112.5,87.5,100,1],"polygonId":"polygon-000639","shapeId":"shape-0004-morph-targets-box-4","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3473,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000640","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,112.5,-87.5,-100,1],"polygonId":"polygon-000640","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3504,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000641","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,62.5,-87.5,-100,1],"polygonId":"polygon-000641","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3535,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000642","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,87.5,-87.5,-100,1],"polygonId":"polygon-000642","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3566,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000643","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,37.5,-87.5,-100,1],"polygonId":"polygon-000643","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3597,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000644","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,62.5,-87.5,-100,1],"polygonId":"polygon-000644","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3628,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000645","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,12.5,-87.5,-100,1],"polygonId":"polygon-000645","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3659,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000646","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,37.5,-87.5,-100,1],"polygonId":"polygon-000646","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3690,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000647","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-12.5,-87.5,-100,1],"polygonId":"polygon-000647","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3721,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000648","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,12.5,-87.5,-100,1],"polygonId":"polygon-000648","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3752,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000649","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-37.5,-87.5,-100,1],"polygonId":"polygon-000649","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3783,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000650","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,-12.5,-87.5,-100,1],"polygonId":"polygon-000650","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3814,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000651","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-62.5,-87.5,-100,1],"polygonId":"polygon-000651","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3845,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000652","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,-37.5,-87.5,-100,1],"polygonId":"polygon-000652","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3876,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000653","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-87.5,-87.5,-100,1],"polygonId":"polygon-000653","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3907,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000654","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,-62.5,-87.5,-100,1],"polygonId":"polygon-000654","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3938,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000655","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-112.5,-87.5,-100,1],"polygonId":"polygon-000655","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3969,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000656","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,112.5,-62.5,-100,1],"polygonId":"polygon-000656","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":4000,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000657","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,62.5,-62.5,-100,1],"polygonId":"polygon-000657","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":4031,"y":125},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000658","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,87.5,-62.5,-100,1],"polygonId":"polygon-000658","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":4062,"y":125},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000659","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,37.5,-62.5,-100,1],"polygonId":"polygon-000659","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000660","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,62.5,-62.5,-100,1],"polygonId":"polygon-000660","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":32,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000661","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,12.5,-62.5,-100,1],"polygonId":"polygon-000661","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":63,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000662","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,37.5,-62.5,-100,1],"polygonId":"polygon-000662","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":94,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000663","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-12.5,-62.5,-100,1],"polygonId":"polygon-000663","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":125,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000664","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,12.5,-62.5,-100,1],"polygonId":"polygon-000664","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":156,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000665","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-37.5,-62.5,-100,1],"polygonId":"polygon-000665","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":187,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000666","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,-12.5,-62.5,-100,1],"polygonId":"polygon-000666","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":218,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000667","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-62.5,-62.5,-100,1],"polygonId":"polygon-000667","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":249,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000668","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,-37.5,-62.5,-100,1],"polygonId":"polygon-000668","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":280,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000669","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-87.5,-62.5,-100,1],"polygonId":"polygon-000669","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":311,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000670","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,-62.5,-62.5,-100,1],"polygonId":"polygon-000670","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":342,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000671","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-112.5,-62.5,-100,1],"polygonId":"polygon-000671","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":373,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000672","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,112.5,-37.5,-100,1],"polygonId":"polygon-000672","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":404,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000673","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,62.5,-37.5,-100,1],"polygonId":"polygon-000673","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":435,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000674","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,87.5,-37.5,-100,1],"polygonId":"polygon-000674","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":466,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000675","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,37.5,-37.5,-100,1],"polygonId":"polygon-000675","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":497,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000676","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,62.5,-37.5,-100,1],"polygonId":"polygon-000676","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":528,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000677","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,12.5,-37.5,-100,1],"polygonId":"polygon-000677","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":559,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000678","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,37.5,-37.5,-100,1],"polygonId":"polygon-000678","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":590,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000679","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-12.5,-37.5,-100,1],"polygonId":"polygon-000679","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":621,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000680","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,12.5,-37.5,-100,1],"polygonId":"polygon-000680","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":652,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000681","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-37.5,-37.5,-100,1],"polygonId":"polygon-000681","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":683,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000682","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,-12.5,-37.5,-100,1],"polygonId":"polygon-000682","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":714,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000683","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-62.5,-37.5,-100,1],"polygonId":"polygon-000683","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":745,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000684","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,-37.5,-37.5,-100,1],"polygonId":"polygon-000684","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":776,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000685","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-87.5,-37.5,-100,1],"polygonId":"polygon-000685","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":807,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000686","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,-62.5,-37.5,-100,1],"polygonId":"polygon-000686","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":838,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000687","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-112.5,-37.5,-100,1],"polygonId":"polygon-000687","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":869,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000688","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,112.5,-12.5,-100,1],"polygonId":"polygon-000688","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":900,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000689","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,62.5,-12.5,-100,1],"polygonId":"polygon-000689","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":931,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000690","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,87.5,-12.5,-100,1],"polygonId":"polygon-000690","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":962,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000691","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,37.5,-12.5,-100,1],"polygonId":"polygon-000691","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":993,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000692","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,62.5,-12.5,-100,1],"polygonId":"polygon-000692","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1024,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000693","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,12.5,-12.5,-100,1],"polygonId":"polygon-000693","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1055,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000694","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,37.5,-12.5,-100,1],"polygonId":"polygon-000694","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1086,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000695","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-12.5,-12.5,-100,1],"polygonId":"polygon-000695","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1117,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000696","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,12.5,-12.5,-100,1],"polygonId":"polygon-000696","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1148,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000697","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-37.5,-12.5,-100,1],"polygonId":"polygon-000697","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1179,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000698","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,-12.5,-12.5,-100,1],"polygonId":"polygon-000698","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1210,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000699","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-62.5,-12.5,-100,1],"polygonId":"polygon-000699","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1241,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000700","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,-37.5,-12.5,-100,1],"polygonId":"polygon-000700","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1272,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000701","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-87.5,-12.5,-100,1],"polygonId":"polygon-000701","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1303,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000702","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,-62.5,-12.5,-100,1],"polygonId":"polygon-000702","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1334,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000703","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-112.5,-12.5,-100,1],"polygonId":"polygon-000703","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1365,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000704","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,112.5,12.5,-100,1],"polygonId":"polygon-000704","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1396,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000705","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,62.5,12.5,-100,1],"polygonId":"polygon-000705","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1427,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000706","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,87.5,12.5,-100,1],"polygonId":"polygon-000706","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1458,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000707","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,37.5,12.5,-100,1],"polygonId":"polygon-000707","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1489,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000708","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,62.5,12.5,-100,1],"polygonId":"polygon-000708","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1520,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000709","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,12.5,12.5,-100,1],"polygonId":"polygon-000709","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1551,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000710","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,37.5,12.5,-100,1],"polygonId":"polygon-000710","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1582,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000711","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-12.5,12.5,-100,1],"polygonId":"polygon-000711","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1613,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000712","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,12.5,12.5,-100,1],"polygonId":"polygon-000712","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1644,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000713","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-37.5,12.5,-100,1],"polygonId":"polygon-000713","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1675,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000714","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,-12.5,12.5,-100,1],"polygonId":"polygon-000714","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1706,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000715","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-62.5,12.5,-100,1],"polygonId":"polygon-000715","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1737,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000716","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,-37.5,12.5,-100,1],"polygonId":"polygon-000716","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1768,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000717","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-87.5,12.5,-100,1],"polygonId":"polygon-000717","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1799,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000718","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,-62.5,12.5,-100,1],"polygonId":"polygon-000718","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1830,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000719","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-112.5,12.5,-100,1],"polygonId":"polygon-000719","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1861,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000720","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,112.5,37.5,-100,1],"polygonId":"polygon-000720","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1892,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000721","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,62.5,37.5,-100,1],"polygonId":"polygon-000721","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1923,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000722","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,87.5,37.5,-100,1],"polygonId":"polygon-000722","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1954,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000723","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,37.5,37.5,-100,1],"polygonId":"polygon-000723","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":1985,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000724","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,62.5,37.5,-100,1],"polygonId":"polygon-000724","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2016,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000725","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,12.5,37.5,-100,1],"polygonId":"polygon-000725","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2047,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000726","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,37.5,37.5,-100,1],"polygonId":"polygon-000726","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2078,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000727","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-12.5,37.5,-100,1],"polygonId":"polygon-000727","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2109,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000728","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,12.5,37.5,-100,1],"polygonId":"polygon-000728","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2140,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000729","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-37.5,37.5,-100,1],"polygonId":"polygon-000729","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2171,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000730","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,-12.5,37.5,-100,1],"polygonId":"polygon-000730","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2202,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000731","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-62.5,37.5,-100,1],"polygonId":"polygon-000731","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2233,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000732","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,-37.5,37.5,-100,1],"polygonId":"polygon-000732","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2264,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000733","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-87.5,37.5,-100,1],"polygonId":"polygon-000733","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2295,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000734","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,-62.5,37.5,-100,1],"polygonId":"polygon-000734","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2326,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000735","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-112.5,37.5,-100,1],"polygonId":"polygon-000735","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2357,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000736","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,112.5,62.5,-100,1],"polygonId":"polygon-000736","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2388,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000737","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,62.5,62.5,-100,1],"polygonId":"polygon-000737","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2419,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000738","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,87.5,62.5,-100,1],"polygonId":"polygon-000738","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2450,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000739","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,37.5,62.5,-100,1],"polygonId":"polygon-000739","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2481,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000740","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,62.5,62.5,-100,1],"polygonId":"polygon-000740","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2512,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000741","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,12.5,62.5,-100,1],"polygonId":"polygon-000741","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2543,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000742","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,37.5,62.5,-100,1],"polygonId":"polygon-000742","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2574,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000743","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-12.5,62.5,-100,1],"polygonId":"polygon-000743","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2605,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000744","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,12.5,62.5,-100,1],"polygonId":"polygon-000744","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2636,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000745","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-37.5,62.5,-100,1],"polygonId":"polygon-000745","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2667,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000746","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,-12.5,62.5,-100,1],"polygonId":"polygon-000746","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2698,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000747","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-62.5,62.5,-100,1],"polygonId":"polygon-000747","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2729,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000748","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,-37.5,62.5,-100,1],"polygonId":"polygon-000748","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2760,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000749","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-87.5,62.5,-100,1],"polygonId":"polygon-000749","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2791,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000750","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,-62.5,62.5,-100,1],"polygonId":"polygon-000750","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2822,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000751","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-112.5,62.5,-100,1],"polygonId":"polygon-000751","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2853,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000752","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,112.5,87.5,-100,1],"polygonId":"polygon-000752","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2884,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000753","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,62.5,87.5,-100,1],"polygonId":"polygon-000753","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2915,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000754","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,87.5,87.5,-100,1],"polygonId":"polygon-000754","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2946,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000755","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,37.5,87.5,-100,1],"polygonId":"polygon-000755","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":2977,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000756","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,62.5,87.5,-100,1],"polygonId":"polygon-000756","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3008,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000757","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,12.5,87.5,-100,1],"polygonId":"polygon-000757","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3039,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000758","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,37.5,87.5,-100,1],"polygonId":"polygon-000758","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3070,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000759","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-12.5,87.5,-100,1],"polygonId":"polygon-000759","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3101,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000760","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,12.5,87.5,-100,1],"polygonId":"polygon-000760","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3132,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000761","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-37.5,87.5,-100,1],"polygonId":"polygon-000761","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3163,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000762","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,-12.5,87.5,-100,1],"polygonId":"polygon-000762","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3194,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000763","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-62.5,87.5,-100,1],"polygonId":"polygon-000763","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3225,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000764","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,-37.5,87.5,-100,1],"polygonId":"polygon-000764","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3256,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000765","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-87.5,87.5,-100,1],"polygonId":"polygon-000765","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3287,"y":156},"height":29,"matrixFromLeaf":[-0.64,1.28,0,0,-0.64,-1.28,0,0,0,0,1,0,34.56,32,0,1],"width":29},"height":32,"id":"leaf-polygon-000766","materialId":"source-lit-101-000-000","matrix":[-0.78125,-0.78125,0,0,-0.390625,0.390625,0,0,0,0,-1,0,-62.5,87.5,-100,1],"polygonId":"polygon-000766","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32},{"atlas":null,"fallback":{"atlas":{"height":29,"pageHeight":186,"pageWidth":4092,"resourcePath":"assets/solid-triangles-000.webp","width":29,"x":3318,"y":156},"height":29,"matrixFromLeaf":[-0.64,-1.28,0,0,0.64,-1.28,0,0,0,0,1,0,16,69.12,0,1],"width":29},"height":32,"id":"leaf-polygon-000767","materialId":"source-lit-101-000-000","matrix":[0.78125,0.78125,0,0,0.390625,-0.390625,0,0,0,0,-1,0,-112.5,87.5,-100,1],"polygonId":"polygon-000767","shapeId":"shape-0005-morph-targets-box-5","strategy":"solid-triangle","width":32}],"modelMatrix":[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],"shapes":[{"id":"shape-0000-morph-targets-box-0","matrix":[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]},{"id":"shape-0001-morph-targets-box-1","matrix":[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]},{"id":"shape-0002-morph-targets-box-2","matrix":[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]},{"id":"shape-0003-morph-targets-box-3","matrix":[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]},{"id":"shape-0004-morph-targets-box-4","matrix":[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]},{"id":"shape-0005-morph-targets-box-5","matrix":[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]}]},"schema":"polycss-morph.model@1","springs":[],"topology":{"normals":[[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[-1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[1,0,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,-1,0],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,-1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1],[0,0,1]],"polygons":[{"id":"polygon-000000","normalIndices":[0,9,1],"vertexIndices":[0,9,1]},{"id":"polygon-000001","normalIndices":[9,10,1],"vertexIndices":[9,10,1]},{"id":"polygon-000002","normalIndices":[1,10,2],"vertexIndices":[1,10,2]},{"id":"polygon-000003","normalIndices":[10,11,2],"vertexIndices":[10,11,2]},{"id":"polygon-000004","normalIndices":[2,11,3],"vertexIndices":[2,11,3]},{"id":"polygon-000005","normalIndices":[11,12,3],"vertexIndices":[11,12,3]},{"id":"polygon-000006","normalIndices":[3,12,4],"vertexIndices":[3,12,4]},{"id":"polygon-000007","normalIndices":[12,13,4],"vertexIndices":[12,13,4]},{"id":"polygon-000008","normalIndices":[4,13,5],"vertexIndices":[4,13,5]},{"id":"polygon-000009","normalIndices":[13,14,5],"vertexIndices":[13,14,5]},{"id":"polygon-000010","normalIndices":[5,14,6],"vertexIndices":[5,14,6]},{"id":"polygon-000011","normalIndices":[14,15,6],"vertexIndices":[14,15,6]},{"id":"polygon-000012","normalIndices":[6,15,7],"vertexIndices":[6,15,7]},{"id":"polygon-000013","normalIndices":[15,16,7],"vertexIndices":[15,16,7]},{"id":"polygon-000014","normalIndices":[7,16,8],"vertexIndices":[7,16,8]},{"id":"polygon-000015","normalIndices":[16,17,8],"vertexIndices":[16,17,8]},{"id":"polygon-000016","normalIndices":[9,18,10],"vertexIndices":[9,18,10]},{"id":"polygon-000017","normalIndices":[18,19,10],"vertexIndices":[18,19,10]},{"id":"polygon-000018","normalIndices":[10,19,11],"vertexIndices":[10,19,11]},{"id":"polygon-000019","normalIndices":[19,20,11],"vertexIndices":[19,20,11]},{"id":"polygon-000020","normalIndices":[11,20,12],"vertexIndices":[11,20,12]},{"id":"polygon-000021","normalIndices":[20,21,12],"vertexIndices":[20,21,12]},{"id":"polygon-000022","normalIndices":[12,21,13],"vertexIndices":[12,21,13]},{"id":"polygon-000023","normalIndices":[21,22,13],"vertexIndices":[21,22,13]},{"id":"polygon-000024","normalIndices":[13,22,14],"vertexIndices":[13,22,14]},{"id":"polygon-000025","normalIndices":[22,23,14],"vertexIndices":[22,23,14]},{"id":"polygon-000026","normalIndices":[14,23,15],"vertexIndices":[14,23,15]},{"id":"polygon-000027","normalIndices":[23,24,15],"vertexIndices":[23,24,15]},{"id":"polygon-000028","normalIndices":[15,24,16],"vertexIndices":[15,24,16]},{"id":"polygon-000029","normalIndices":[24,25,16],"vertexIndices":[24,25,16]},{"id":"polygon-000030","normalIndices":[16,25,17],"vertexIndices":[16,25,17]},{"id":"polygon-000031","normalIndices":[25,26,17],"vertexIndices":[25,26,17]},{"id":"polygon-000032","normalIndices":[18,27,19],"vertexIndices":[18,27,19]},{"id":"polygon-000033","normalIndices":[27,28,19],"vertexIndices":[27,28,19]},{"id":"polygon-000034","normalIndices":[19,28,20],"vertexIndices":[19,28,20]},{"id":"polygon-000035","normalIndices":[28,29,20],"vertexIndices":[28,29,20]},{"id":"polygon-000036","normalIndices":[20,29,21],"vertexIndices":[20,29,21]},{"id":"polygon-000037","normalIndices":[29,30,21],"vertexIndices":[29,30,21]},{"id":"polygon-000038","normalIndices":[21,30,22],"vertexIndices":[21,30,22]},{"id":"polygon-000039","normalIndices":[30,31,22],"vertexIndices":[30,31,22]},{"id":"polygon-000040","normalIndices":[22,31,23],"vertexIndices":[22,31,23]},{"id":"polygon-000041","normalIndices":[31,32,23],"vertexIndices":[31,32,23]},{"id":"polygon-000042","normalIndices":[23,32,24],"vertexIndices":[23,32,24]},{"id":"polygon-000043","normalIndices":[32,33,24],"vertexIndices":[32,33,24]},{"id":"polygon-000044","normalIndices":[24,33,25],"vertexIndices":[24,33,25]},{"id":"polygon-000045","normalIndices":[33,34,25],"vertexIndices":[33,34,25]},{"id":"polygon-000046","normalIndices":[25,34,26],"vertexIndices":[25,34,26]},{"id":"polygon-000047","normalIndices":[34,35,26],"vertexIndices":[34,35,26]},{"id":"polygon-000048","normalIndices":[27,36,28],"vertexIndices":[27,36,28]},{"id":"polygon-000049","normalIndices":[36,37,28],"vertexIndices":[36,37,28]},{"id":"polygon-000050","normalIndices":[28,37,29],"vertexIndices":[28,37,29]},{"id":"polygon-000051","normalIndices":[37,38,29],"vertexIndices":[37,38,29]},{"id":"polygon-000052","normalIndices":[29,38,30],"vertexIndices":[29,38,30]},{"id":"polygon-000053","normalIndices":[38,39,30],"vertexIndices":[38,39,30]},{"id":"polygon-000054","normalIndices":[30,39,31],"vertexIndices":[30,39,31]},{"id":"polygon-000055","normalIndices":[39,40,31],"vertexIndices":[39,40,31]},{"id":"polygon-000056","normalIndices":[31,40,32],"vertexIndices":[31,40,32]},{"id":"polygon-000057","normalIndices":[40,41,32],"vertexIndices":[40,41,32]},{"id":"polygon-000058","normalIndices":[32,41,33],"vertexIndices":[32,41,33]},{"id":"polygon-000059","normalIndices":[41,42,33],"vertexIndices":[41,42,33]},{"id":"polygon-000060","normalIndices":[33,42,34],"vertexIndices":[33,42,34]},{"id":"polygon-000061","normalIndices":[42,43,34],"vertexIndices":[42,43,34]},{"id":"polygon-000062","normalIndices":[34,43,35],"vertexIndices":[34,43,35]},{"id":"polygon-000063","normalIndices":[43,44,35],"vertexIndices":[43,44,35]},{"id":"polygon-000064","normalIndices":[36,45,37],"vertexIndices":[36,45,37]},{"id":"polygon-000065","normalIndices":[45,46,37],"vertexIndices":[45,46,37]},{"id":"polygon-000066","normalIndices":[37,46,38],"vertexIndices":[37,46,38]},{"id":"polygon-000067","normalIndices":[46,47,38],"vertexIndices":[46,47,38]},{"id":"polygon-000068","normalIndices":[38,47,39],"vertexIndices":[38,47,39]},{"id":"polygon-000069","normalIndices":[47,48,39],"vertexIndices":[47,48,39]},{"id":"polygon-000070","normalIndices":[39,48,40],"vertexIndices":[39,48,40]},{"id":"polygon-000071","normalIndices":[48,49,40],"vertexIndices":[48,49,40]},{"id":"polygon-000072","normalIndices":[40,49,41],"vertexIndices":[40,49,41]},{"id":"polygon-000073","normalIndices":[49,50,41],"vertexIndices":[49,50,41]},{"id":"polygon-000074","normalIndices":[41,50,42],"vertexIndices":[41,50,42]},{"id":"polygon-000075","normalIndices":[50,51,42],"vertexIndices":[50,51,42]},{"id":"polygon-000076","normalIndices":[42,51,43],"vertexIndices":[42,51,43]},{"id":"polygon-000077","normalIndices":[51,52,43],"vertexIndices":[51,52,43]},{"id":"polygon-000078","normalIndices":[43,52,44],"vertexIndices":[43,52,44]},{"id":"polygon-000079","normalIndices":[52,53,44],"vertexIndices":[52,53,44]},{"id":"polygon-000080","normalIndices":[45,54,46],"vertexIndices":[45,54,46]},{"id":"polygon-000081","normalIndices":[54,55,46],"vertexIndices":[54,55,46]},{"id":"polygon-000082","normalIndices":[46,55,47],"vertexIndices":[46,55,47]},{"id":"polygon-000083","normalIndices":[55,56,47],"vertexIndices":[55,56,47]},{"id":"polygon-000084","normalIndices":[47,56,48],"vertexIndices":[47,56,48]},{"id":"polygon-000085","normalIndices":[56,57,48],"vertexIndices":[56,57,48]},{"id":"polygon-000086","normalIndices":[48,57,49],"vertexIndices":[48,57,49]},{"id":"polygon-000087","normalIndices":[57,58,49],"vertexIndices":[57,58,49]},{"id":"polygon-000088","normalIndices":[49,58,50],"vertexIndices":[49,58,50]},{"id":"polygon-000089","normalIndices":[58,59,50],"vertexIndices":[58,59,50]},{"id":"polygon-000090","normalIndices":[50,59,51],"vertexIndices":[50,59,51]},{"id":"polygon-000091","normalIndices":[59,60,51],"vertexIndices":[59,60,51]},{"id":"polygon-000092","normalIndices":[51,60,52],"vertexIndices":[51,60,52]},{"id":"polygon-000093","normalIndices":[60,61,52],"vertexIndices":[60,61,52]},{"id":"polygon-000094","normalIndices":[52,61,53],"vertexIndices":[52,61,53]},{"id":"polygon-000095","normalIndices":[61,62,53],"vertexIndices":[61,62,53]},{"id":"polygon-000096","normalIndices":[54,63,55],"vertexIndices":[54,63,55]},{"id":"polygon-000097","normalIndices":[63,64,55],"vertexIndices":[63,64,55]},{"id":"polygon-000098","normalIndices":[55,64,56],"vertexIndices":[55,64,56]},{"id":"polygon-000099","normalIndices":[64,65,56],"vertexIndices":[64,65,56]},{"id":"polygon-000100","normalIndices":[56,65,57],"vertexIndices":[56,65,57]},{"id":"polygon-000101","normalIndices":[65,66,57],"vertexIndices":[65,66,57]},{"id":"polygon-000102","normalIndices":[57,66,58],"vertexIndices":[57,66,58]},{"id":"polygon-000103","normalIndices":[66,67,58],"vertexIndices":[66,67,58]},{"id":"polygon-000104","normalIndices":[58,67,59],"vertexIndices":[58,67,59]},{"id":"polygon-000105","normalIndices":[67,68,59],"vertexIndices":[67,68,59]},{"id":"polygon-000106","normalIndices":[59,68,60],"vertexIndices":[59,68,60]},{"id":"polygon-000107","normalIndices":[68,69,60],"vertexIndices":[68,69,60]},{"id":"polygon-000108","normalIndices":[60,69,61],"vertexIndices":[60,69,61]},{"id":"polygon-000109","normalIndices":[69,70,61],"vertexIndices":[69,70,61]},{"id":"polygon-000110","normalIndices":[61,70,62],"vertexIndices":[61,70,62]},{"id":"polygon-000111","normalIndices":[70,71,62],"vertexIndices":[70,71,62]},{"id":"polygon-000112","normalIndices":[63,72,64],"vertexIndices":[63,72,64]},{"id":"polygon-000113","normalIndices":[72,73,64],"vertexIndices":[72,73,64]},{"id":"polygon-000114","normalIndices":[64,73,65],"vertexIndices":[64,73,65]},{"id":"polygon-000115","normalIndices":[73,74,65],"vertexIndices":[73,74,65]},{"id":"polygon-000116","normalIndices":[65,74,66],"vertexIndices":[65,74,66]},{"id":"polygon-000117","normalIndices":[74,75,66],"vertexIndices":[74,75,66]},{"id":"polygon-000118","normalIndices":[66,75,67],"vertexIndices":[66,75,67]},{"id":"polygon-000119","normalIndices":[75,76,67],"vertexIndices":[75,76,67]},{"id":"polygon-000120","normalIndices":[67,76,68],"vertexIndices":[67,76,68]},{"id":"polygon-000121","normalIndices":[76,77,68],"vertexIndices":[76,77,68]},{"id":"polygon-000122","normalIndices":[68,77,69],"vertexIndices":[68,77,69]},{"id":"polygon-000123","normalIndices":[77,78,69],"vertexIndices":[77,78,69]},{"id":"polygon-000124","normalIndices":[69,78,70],"vertexIndices":[69,78,70]},{"id":"polygon-000125","normalIndices":[78,79,70],"vertexIndices":[78,79,70]},{"id":"polygon-000126","normalIndices":[70,79,71],"vertexIndices":[70,79,71]},{"id":"polygon-000127","normalIndices":[79,80,71],"vertexIndices":[79,80,71]},{"id":"polygon-000128","normalIndices":[81,90,82],"vertexIndices":[81,90,82]},{"id":"polygon-000129","normalIndices":[90,91,82],"vertexIndices":[90,91,82]},{"id":"polygon-000130","normalIndices":[82,91,83],"vertexIndices":[82,91,83]},{"id":"polygon-000131","normalIndices":[91,92,83],"vertexIndices":[91,92,83]},{"id":"polygon-000132","normalIndices":[83,92,84],"vertexIndices":[83,92,84]},{"id":"polygon-000133","normalIndices":[92,93,84],"vertexIndices":[92,93,84]},{"id":"polygon-000134","normalIndices":[84,93,85],"vertexIndices":[84,93,85]},{"id":"polygon-000135","normalIndices":[93,94,85],"vertexIndices":[93,94,85]},{"id":"polygon-000136","normalIndices":[85,94,86],"vertexIndices":[85,94,86]},{"id":"polygon-000137","normalIndices":[94,95,86],"vertexIndices":[94,95,86]},{"id":"polygon-000138","normalIndices":[86,95,87],"vertexIndices":[86,95,87]},{"id":"polygon-000139","normalIndices":[95,96,87],"vertexIndices":[95,96,87]},{"id":"polygon-000140","normalIndices":[87,96,88],"vertexIndices":[87,96,88]},{"id":"polygon-000141","normalIndices":[96,97,88],"vertexIndices":[96,97,88]},{"id":"polygon-000142","normalIndices":[88,97,89],"vertexIndices":[88,97,89]},{"id":"polygon-000143","normalIndices":[97,98,89],"vertexIndices":[97,98,89]},{"id":"polygon-000144","normalIndices":[90,99,91],"vertexIndices":[90,99,91]},{"id":"polygon-000145","normalIndices":[99,100,91],"vertexIndices":[99,100,91]},{"id":"polygon-000146","normalIndices":[91,100,92],"vertexIndices":[91,100,92]},{"id":"polygon-000147","normalIndices":[100,101,92],"vertexIndices":[100,101,92]},{"id":"polygon-000148","normalIndices":[92,101,93],"vertexIndices":[92,101,93]},{"id":"polygon-000149","normalIndices":[101,102,93],"vertexIndices":[101,102,93]},{"id":"polygon-000150","normalIndices":[93,102,94],"vertexIndices":[93,102,94]},{"id":"polygon-000151","normalIndices":[102,103,94],"vertexIndices":[102,103,94]},{"id":"polygon-000152","normalIndices":[94,103,95],"vertexIndices":[94,103,95]},{"id":"polygon-000153","normalIndices":[103,104,95],"vertexIndices":[103,104,95]},{"id":"polygon-000154","normalIndices":[95,104,96],"vertexIndices":[95,104,96]},{"id":"polygon-000155","normalIndices":[104,105,96],"vertexIndices":[104,105,96]},{"id":"polygon-000156","normalIndices":[96,105,97],"vertexIndices":[96,105,97]},{"id":"polygon-000157","normalIndices":[105,106,97],"vertexIndices":[105,106,97]},{"id":"polygon-000158","normalIndices":[97,106,98],"vertexIndices":[97,106,98]},{"id":"polygon-000159","normalIndices":[106,107,98],"vertexIndices":[106,107,98]},{"id":"polygon-000160","normalIndices":[99,108,100],"vertexIndices":[99,108,100]},{"id":"polygon-000161","normalIndices":[108,109,100],"vertexIndices":[108,109,100]},{"id":"polygon-000162","normalIndices":[100,109,101],"vertexIndices":[100,109,101]},{"id":"polygon-000163","normalIndices":[109,110,101],"vertexIndices":[109,110,101]},{"id":"polygon-000164","normalIndices":[101,110,102],"vertexIndices":[101,110,102]},{"id":"polygon-000165","normalIndices":[110,111,102],"vertexIndices":[110,111,102]},{"id":"polygon-000166","normalIndices":[102,111,103],"vertexIndices":[102,111,103]},{"id":"polygon-000167","normalIndices":[111,112,103],"vertexIndices":[111,112,103]},{"id":"polygon-000168","normalIndices":[103,112,104],"vertexIndices":[103,112,104]},{"id":"polygon-000169","normalIndices":[112,113,104],"vertexIndices":[112,113,104]},{"id":"polygon-000170","normalIndices":[104,113,105],"vertexIndices":[104,113,105]},{"id":"polygon-000171","normalIndices":[113,114,105],"vertexIndices":[113,114,105]},{"id":"polygon-000172","normalIndices":[105,114,106],"vertexIndices":[105,114,106]},{"id":"polygon-000173","normalIndices":[114,115,106],"vertexIndices":[114,115,106]},{"id":"polygon-000174","normalIndices":[106,115,107],"vertexIndices":[106,115,107]},{"id":"polygon-000175","normalIndices":[115,116,107],"vertexIndices":[115,116,107]},{"id":"polygon-000176","normalIndices":[108,117,109],"vertexIndices":[108,117,109]},{"id":"polygon-000177","normalIndices":[117,118,109],"vertexIndices":[117,118,109]},{"id":"polygon-000178","normalIndices":[109,118,110],"vertexIndices":[109,118,110]},{"id":"polygon-000179","normalIndices":[118,119,110],"vertexIndices":[118,119,110]},{"id":"polygon-000180","normalIndices":[110,119,111],"vertexIndices":[110,119,111]},{"id":"polygon-000181","normalIndices":[119,120,111],"vertexIndices":[119,120,111]},{"id":"polygon-000182","normalIndices":[111,120,112],"vertexIndices":[111,120,112]},{"id":"polygon-000183","normalIndices":[120,121,112],"vertexIndices":[120,121,112]},{"id":"polygon-000184","normalIndices":[112,121,113],"vertexIndices":[112,121,113]},{"id":"polygon-000185","normalIndices":[121,122,113],"vertexIndices":[121,122,113]},{"id":"polygon-000186","normalIndices":[113,122,114],"vertexIndices":[113,122,114]},{"id":"polygon-000187","normalIndices":[122,123,114],"vertexIndices":[122,123,114]},{"id":"polygon-000188","normalIndices":[114,123,115],"vertexIndices":[114,123,115]},{"id":"polygon-000189","normalIndices":[123,124,115],"vertexIndices":[123,124,115]},{"id":"polygon-000190","normalIndices":[115,124,116],"vertexIndices":[115,124,116]},{"id":"polygon-000191","normalIndices":[124,125,116],"vertexIndices":[124,125,116]},{"id":"polygon-000192","normalIndices":[117,126,118],"vertexIndices":[117,126,118]},{"id":"polygon-000193","normalIndices":[126,127,118],"vertexIndices":[126,127,118]},{"id":"polygon-000194","normalIndices":[118,127,119],"vertexIndices":[118,127,119]},{"id":"polygon-000195","normalIndices":[127,128,119],"vertexIndices":[127,128,119]},{"id":"polygon-000196","normalIndices":[119,128,120],"vertexIndices":[119,128,120]},{"id":"polygon-000197","normalIndices":[128,129,120],"vertexIndices":[128,129,120]},{"id":"polygon-000198","normalIndices":[120,129,121],"vertexIndices":[120,129,121]},{"id":"polygon-000199","normalIndices":[129,130,121],"vertexIndices":[129,130,121]},{"id":"polygon-000200","normalIndices":[121,130,122],"vertexIndices":[121,130,122]},{"id":"polygon-000201","normalIndices":[130,131,122],"vertexIndices":[130,131,122]},{"id":"polygon-000202","normalIndices":[122,131,123],"vertexIndices":[122,131,123]},{"id":"polygon-000203","normalIndices":[131,132,123],"vertexIndices":[131,132,123]},{"id":"polygon-000204","normalIndices":[123,132,124],"vertexIndices":[123,132,124]},{"id":"polygon-000205","normalIndices":[132,133,124],"vertexIndices":[132,133,124]},{"id":"polygon-000206","normalIndices":[124,133,125],"vertexIndices":[124,133,125]},{"id":"polygon-000207","normalIndices":[133,134,125],"vertexIndices":[133,134,125]},{"id":"polygon-000208","normalIndices":[126,135,127],"vertexIndices":[126,135,127]},{"id":"polygon-000209","normalIndices":[135,136,127],"vertexIndices":[135,136,127]},{"id":"polygon-000210","normalIndices":[127,136,128],"vertexIndices":[127,136,128]},{"id":"polygon-000211","normalIndices":[136,137,128],"vertexIndices":[136,137,128]},{"id":"polygon-000212","normalIndices":[128,137,129],"vertexIndices":[128,137,129]},{"id":"polygon-000213","normalIndices":[137,138,129],"vertexIndices":[137,138,129]},{"id":"polygon-000214","normalIndices":[129,138,130],"vertexIndices":[129,138,130]},{"id":"polygon-000215","normalIndices":[138,139,130],"vertexIndices":[138,139,130]},{"id":"polygon-000216","normalIndices":[130,139,131],"vertexIndices":[130,139,131]},{"id":"polygon-000217","normalIndices":[139,140,131],"vertexIndices":[139,140,131]},{"id":"polygon-000218","normalIndices":[131,140,132],"vertexIndices":[131,140,132]},{"id":"polygon-000219","normalIndices":[140,141,132],"vertexIndices":[140,141,132]},{"id":"polygon-000220","normalIndices":[132,141,133],"vertexIndices":[132,141,133]},{"id":"polygon-000221","normalIndices":[141,142,133],"vertexIndices":[141,142,133]},{"id":"polygon-000222","normalIndices":[133,142,134],"vertexIndices":[133,142,134]},{"id":"polygon-000223","normalIndices":[142,143,134],"vertexIndices":[142,143,134]},{"id":"polygon-000224","normalIndices":[135,144,136],"vertexIndices":[135,144,136]},{"id":"polygon-000225","normalIndices":[144,145,136],"vertexIndices":[144,145,136]},{"id":"polygon-000226","normalIndices":[136,145,137],"vertexIndices":[136,145,137]},{"id":"polygon-000227","normalIndices":[145,146,137],"vertexIndices":[145,146,137]},{"id":"polygon-000228","normalIndices":[137,146,138],"vertexIndices":[137,146,138]},{"id":"polygon-000229","normalIndices":[146,147,138],"vertexIndices":[146,147,138]},{"id":"polygon-000230","normalIndices":[138,147,139],"vertexIndices":[138,147,139]},{"id":"polygon-000231","normalIndices":[147,148,139],"vertexIndices":[147,148,139]},{"id":"polygon-000232","normalIndices":[139,148,140],"vertexIndices":[139,148,140]},{"id":"polygon-000233","normalIndices":[148,149,140],"vertexIndices":[148,149,140]},{"id":"polygon-000234","normalIndices":[140,149,141],"vertexIndices":[140,149,141]},{"id":"polygon-000235","normalIndices":[149,150,141],"vertexIndices":[149,150,141]},{"id":"polygon-000236","normalIndices":[141,150,142],"vertexIndices":[141,150,142]},{"id":"polygon-000237","normalIndices":[150,151,142],"vertexIndices":[150,151,142]},{"id":"polygon-000238","normalIndices":[142,151,143],"vertexIndices":[142,151,143]},{"id":"polygon-000239","normalIndices":[151,152,143],"vertexIndices":[151,152,143]},{"id":"polygon-000240","normalIndices":[144,153,145],"vertexIndices":[144,153,145]},{"id":"polygon-000241","normalIndices":[153,154,145],"vertexIndices":[153,154,145]},{"id":"polygon-000242","normalIndices":[145,154,146],"vertexIndices":[145,154,146]},{"id":"polygon-000243","normalIndices":[154,155,146],"vertexIndices":[154,155,146]},{"id":"polygon-000244","normalIndices":[146,155,147],"vertexIndices":[146,155,147]},{"id":"polygon-000245","normalIndices":[155,156,147],"vertexIndices":[155,156,147]},{"id":"polygon-000246","normalIndices":[147,156,148],"vertexIndices":[147,156,148]},{"id":"polygon-000247","normalIndices":[156,157,148],"vertexIndices":[156,157,148]},{"id":"polygon-000248","normalIndices":[148,157,149],"vertexIndices":[148,157,149]},{"id":"polygon-000249","normalIndices":[157,158,149],"vertexIndices":[157,158,149]},{"id":"polygon-000250","normalIndices":[149,158,150],"vertexIndices":[149,158,150]},{"id":"polygon-000251","normalIndices":[158,159,150],"vertexIndices":[158,159,150]},{"id":"polygon-000252","normalIndices":[150,159,151],"vertexIndices":[150,159,151]},{"id":"polygon-000253","normalIndices":[159,160,151],"vertexIndices":[159,160,151]},{"id":"polygon-000254","normalIndices":[151,160,152],"vertexIndices":[151,160,152]},{"id":"polygon-000255","normalIndices":[160,161,152],"vertexIndices":[160,161,152]},{"id":"polygon-000256","normalIndices":[162,171,163],"vertexIndices":[162,171,163]},{"id":"polygon-000257","normalIndices":[171,172,163],"vertexIndices":[171,172,163]},{"id":"polygon-000258","normalIndices":[163,172,164],"vertexIndices":[163,172,164]},{"id":"polygon-000259","normalIndices":[172,173,164],"vertexIndices":[172,173,164]},{"id":"polygon-000260","normalIndices":[164,173,165],"vertexIndices":[164,173,165]},{"id":"polygon-000261","normalIndices":[173,174,165],"vertexIndices":[173,174,165]},{"id":"polygon-000262","normalIndices":[165,174,166],"vertexIndices":[165,174,166]},{"id":"polygon-000263","normalIndices":[174,175,166],"vertexIndices":[174,175,166]},{"id":"polygon-000264","normalIndices":[166,175,167],"vertexIndices":[166,175,167]},{"id":"polygon-000265","normalIndices":[175,176,167],"vertexIndices":[175,176,167]},{"id":"polygon-000266","normalIndices":[167,176,168],"vertexIndices":[167,176,168]},{"id":"polygon-000267","normalIndices":[176,177,168],"vertexIndices":[176,177,168]},{"id":"polygon-000268","normalIndices":[168,177,169],"vertexIndices":[168,177,169]},{"id":"polygon-000269","normalIndices":[177,178,169],"vertexIndices":[177,178,169]},{"id":"polygon-000270","normalIndices":[169,178,170],"vertexIndices":[169,178,170]},{"id":"polygon-000271","normalIndices":[178,179,170],"vertexIndices":[178,179,170]},{"id":"polygon-000272","normalIndices":[171,180,172],"vertexIndices":[171,180,172]},{"id":"polygon-000273","normalIndices":[180,181,172],"vertexIndices":[180,181,172]},{"id":"polygon-000274","normalIndices":[172,181,173],"vertexIndices":[172,181,173]},{"id":"polygon-000275","normalIndices":[181,182,173],"vertexIndices":[181,182,173]},{"id":"polygon-000276","normalIndices":[173,182,174],"vertexIndices":[173,182,174]},{"id":"polygon-000277","normalIndices":[182,183,174],"vertexIndices":[182,183,174]},{"id":"polygon-000278","normalIndices":[174,183,175],"vertexIndices":[174,183,175]},{"id":"polygon-000279","normalIndices":[183,184,175],"vertexIndices":[183,184,175]},{"id":"polygon-000280","normalIndices":[175,184,176],"vertexIndices":[175,184,176]},{"id":"polygon-000281","normalIndices":[184,185,176],"vertexIndices":[184,185,176]},{"id":"polygon-000282","normalIndices":[176,185,177],"vertexIndices":[176,185,177]},{"id":"polygon-000283","normalIndices":[185,186,177],"vertexIndices":[185,186,177]},{"id":"polygon-000284","normalIndices":[177,186,178],"vertexIndices":[177,186,178]},{"id":"polygon-000285","normalIndices":[186,187,178],"vertexIndices":[186,187,178]},{"id":"polygon-000286","normalIndices":[178,187,179],"vertexIndices":[178,187,179]},{"id":"polygon-000287","normalIndices":[187,188,179],"vertexIndices":[187,188,179]},{"id":"polygon-000288","normalIndices":[180,189,181],"vertexIndices":[180,189,181]},{"id":"polygon-000289","normalIndices":[189,190,181],"vertexIndices":[189,190,181]},{"id":"polygon-000290","normalIndices":[181,190,182],"vertexIndices":[181,190,182]},{"id":"polygon-000291","normalIndices":[190,191,182],"vertexIndices":[190,191,182]},{"id":"polygon-000292","normalIndices":[182,191,183],"vertexIndices":[182,191,183]},{"id":"polygon-000293","normalIndices":[191,192,183],"vertexIndices":[191,192,183]},{"id":"polygon-000294","normalIndices":[183,192,184],"vertexIndices":[183,192,184]},{"id":"polygon-000295","normalIndices":[192,193,184],"vertexIndices":[192,193,184]},{"id":"polygon-000296","normalIndices":[184,193,185],"vertexIndices":[184,193,185]},{"id":"polygon-000297","normalIndices":[193,194,185],"vertexIndices":[193,194,185]},{"id":"polygon-000298","normalIndices":[185,194,186],"vertexIndices":[185,194,186]},{"id":"polygon-000299","normalIndices":[194,195,186],"vertexIndices":[194,195,186]},{"id":"polygon-000300","normalIndices":[186,195,187],"vertexIndices":[186,195,187]},{"id":"polygon-000301","normalIndices":[195,196,187],"vertexIndices":[195,196,187]},{"id":"polygon-000302","normalIndices":[187,196,188],"vertexIndices":[187,196,188]},{"id":"polygon-000303","normalIndices":[196,197,188],"vertexIndices":[196,197,188]},{"id":"polygon-000304","normalIndices":[189,198,190],"vertexIndices":[189,198,190]},{"id":"polygon-000305","normalIndices":[198,199,190],"vertexIndices":[198,199,190]},{"id":"polygon-000306","normalIndices":[190,199,191],"vertexIndices":[190,199,191]},{"id":"polygon-000307","normalIndices":[199,200,191],"vertexIndices":[199,200,191]},{"id":"polygon-000308","normalIndices":[191,200,192],"vertexIndices":[191,200,192]},{"id":"polygon-000309","normalIndices":[200,201,192],"vertexIndices":[200,201,192]},{"id":"polygon-000310","normalIndices":[192,201,193],"vertexIndices":[192,201,193]},{"id":"polygon-000311","normalIndices":[201,202,193],"vertexIndices":[201,202,193]},{"id":"polygon-000312","normalIndices":[193,202,194],"vertexIndices":[193,202,194]},{"id":"polygon-000313","normalIndices":[202,203,194],"vertexIndices":[202,203,194]},{"id":"polygon-000314","normalIndices":[194,203,195],"vertexIndices":[194,203,195]},{"id":"polygon-000315","normalIndices":[203,204,195],"vertexIndices":[203,204,195]},{"id":"polygon-000316","normalIndices":[195,204,196],"vertexIndices":[195,204,196]},{"id":"polygon-000317","normalIndices":[204,205,196],"vertexIndices":[204,205,196]},{"id":"polygon-000318","normalIndices":[196,205,197],"vertexIndices":[196,205,197]},{"id":"polygon-000319","normalIndices":[205,206,197],"vertexIndices":[205,206,197]},{"id":"polygon-000320","normalIndices":[198,207,199],"vertexIndices":[198,207,199]},{"id":"polygon-000321","normalIndices":[207,208,199],"vertexIndices":[207,208,199]},{"id":"polygon-000322","normalIndices":[199,208,200],"vertexIndices":[199,208,200]},{"id":"polygon-000323","normalIndices":[208,209,200],"vertexIndices":[208,209,200]},{"id":"polygon-000324","normalIndices":[200,209,201],"vertexIndices":[200,209,201]},{"id":"polygon-000325","normalIndices":[209,210,201],"vertexIndices":[209,210,201]},{"id":"polygon-000326","normalIndices":[201,210,202],"vertexIndices":[201,210,202]},{"id":"polygon-000327","normalIndices":[210,211,202],"vertexIndices":[210,211,202]},{"id":"polygon-000328","normalIndices":[202,211,203],"vertexIndices":[202,211,203]},{"id":"polygon-000329","normalIndices":[211,212,203],"vertexIndices":[211,212,203]},{"id":"polygon-000330","normalIndices":[203,212,204],"vertexIndices":[203,212,204]},{"id":"polygon-000331","normalIndices":[212,213,204],"vertexIndices":[212,213,204]},{"id":"polygon-000332","normalIndices":[204,213,205],"vertexIndices":[204,213,205]},{"id":"polygon-000333","normalIndices":[213,214,205],"vertexIndices":[213,214,205]},{"id":"polygon-000334","normalIndices":[205,214,206],"vertexIndices":[205,214,206]},{"id":"polygon-000335","normalIndices":[214,215,206],"vertexIndices":[214,215,206]},{"id":"polygon-000336","normalIndices":[207,216,208],"vertexIndices":[207,216,208]},{"id":"polygon-000337","normalIndices":[216,217,208],"vertexIndices":[216,217,208]},{"id":"polygon-000338","normalIndices":[208,217,209],"vertexIndices":[208,217,209]},{"id":"polygon-000339","normalIndices":[217,218,209],"vertexIndices":[217,218,209]},{"id":"polygon-000340","normalIndices":[209,218,210],"vertexIndices":[209,218,210]},{"id":"polygon-000341","normalIndices":[218,219,210],"vertexIndices":[218,219,210]},{"id":"polygon-000342","normalIndices":[210,219,211],"vertexIndices":[210,219,211]},{"id":"polygon-000343","normalIndices":[219,220,211],"vertexIndices":[219,220,211]},{"id":"polygon-000344","normalIndices":[211,220,212],"vertexIndices":[211,220,212]},{"id":"polygon-000345","normalIndices":[220,221,212],"vertexIndices":[220,221,212]},{"id":"polygon-000346","normalIndices":[212,221,213],"vertexIndices":[212,221,213]},{"id":"polygon-000347","normalIndices":[221,222,213],"vertexIndices":[221,222,213]},{"id":"polygon-000348","normalIndices":[213,222,214],"vertexIndices":[213,222,214]},{"id":"polygon-000349","normalIndices":[222,223,214],"vertexIndices":[222,223,214]},{"id":"polygon-000350","normalIndices":[214,223,215],"vertexIndices":[214,223,215]},{"id":"polygon-000351","normalIndices":[223,224,215],"vertexIndices":[223,224,215]},{"id":"polygon-000352","normalIndices":[216,225,217],"vertexIndices":[216,225,217]},{"id":"polygon-000353","normalIndices":[225,226,217],"vertexIndices":[225,226,217]},{"id":"polygon-000354","normalIndices":[217,226,218],"vertexIndices":[217,226,218]},{"id":"polygon-000355","normalIndices":[226,227,218],"vertexIndices":[226,227,218]},{"id":"polygon-000356","normalIndices":[218,227,219],"vertexIndices":[218,227,219]},{"id":"polygon-000357","normalIndices":[227,228,219],"vertexIndices":[227,228,219]},{"id":"polygon-000358","normalIndices":[219,228,220],"vertexIndices":[219,228,220]},{"id":"polygon-000359","normalIndices":[228,229,220],"vertexIndices":[228,229,220]},{"id":"polygon-000360","normalIndices":[220,229,221],"vertexIndices":[220,229,221]},{"id":"polygon-000361","normalIndices":[229,230,221],"vertexIndices":[229,230,221]},{"id":"polygon-000362","normalIndices":[221,230,222],"vertexIndices":[221,230,222]},{"id":"polygon-000363","normalIndices":[230,231,222],"vertexIndices":[230,231,222]},{"id":"polygon-000364","normalIndices":[222,231,223],"vertexIndices":[222,231,223]},{"id":"polygon-000365","normalIndices":[231,232,223],"vertexIndices":[231,232,223]},{"id":"polygon-000366","normalIndices":[223,232,224],"vertexIndices":[223,232,224]},{"id":"polygon-000367","normalIndices":[232,233,224],"vertexIndices":[232,233,224]},{"id":"polygon-000368","normalIndices":[225,234,226],"vertexIndices":[225,234,226]},{"id":"polygon-000369","normalIndices":[234,235,226],"vertexIndices":[234,235,226]},{"id":"polygon-000370","normalIndices":[226,235,227],"vertexIndices":[226,235,227]},{"id":"polygon-000371","normalIndices":[235,236,227],"vertexIndices":[235,236,227]},{"id":"polygon-000372","normalIndices":[227,236,228],"vertexIndices":[227,236,228]},{"id":"polygon-000373","normalIndices":[236,237,228],"vertexIndices":[236,237,228]},{"id":"polygon-000374","normalIndices":[228,237,229],"vertexIndices":[228,237,229]},{"id":"polygon-000375","normalIndices":[237,238,229],"vertexIndices":[237,238,229]},{"id":"polygon-000376","normalIndices":[229,238,230],"vertexIndices":[229,238,230]},{"id":"polygon-000377","normalIndices":[238,239,230],"vertexIndices":[238,239,230]},{"id":"polygon-000378","normalIndices":[230,239,231],"vertexIndices":[230,239,231]},{"id":"polygon-000379","normalIndices":[239,240,231],"vertexIndices":[239,240,231]},{"id":"polygon-000380","normalIndices":[231,240,232],"vertexIndices":[231,240,232]},{"id":"polygon-000381","normalIndices":[240,241,232],"vertexIndices":[240,241,232]},{"id":"polygon-000382","normalIndices":[232,241,233],"vertexIndices":[232,241,233]},{"id":"polygon-000383","normalIndices":[241,242,233],"vertexIndices":[241,242,233]},{"id":"polygon-000384","normalIndices":[243,252,244],"vertexIndices":[243,252,244]},{"id":"polygon-000385","normalIndices":[252,253,244],"vertexIndices":[252,253,244]},{"id":"polygon-000386","normalIndices":[244,253,245],"vertexIndices":[244,253,245]},{"id":"polygon-000387","normalIndices":[253,254,245],"vertexIndices":[253,254,245]},{"id":"polygon-000388","normalIndices":[245,254,246],"vertexIndices":[245,254,246]},{"id":"polygon-000389","normalIndices":[254,255,246],"vertexIndices":[254,255,246]},{"id":"polygon-000390","normalIndices":[246,255,247],"vertexIndices":[246,255,247]},{"id":"polygon-000391","normalIndices":[255,256,247],"vertexIndices":[255,256,247]},{"id":"polygon-000392","normalIndices":[247,256,248],"vertexIndices":[247,256,248]},{"id":"polygon-000393","normalIndices":[256,257,248],"vertexIndices":[256,257,248]},{"id":"polygon-000394","normalIndices":[248,257,249],"vertexIndices":[248,257,249]},{"id":"polygon-000395","normalIndices":[257,258,249],"vertexIndices":[257,258,249]},{"id":"polygon-000396","normalIndices":[249,258,250],"vertexIndices":[249,258,250]},{"id":"polygon-000397","normalIndices":[258,259,250],"vertexIndices":[258,259,250]},{"id":"polygon-000398","normalIndices":[250,259,251],"vertexIndices":[250,259,251]},{"id":"polygon-000399","normalIndices":[259,260,251],"vertexIndices":[259,260,251]},{"id":"polygon-000400","normalIndices":[252,261,253],"vertexIndices":[252,261,253]},{"id":"polygon-000401","normalIndices":[261,262,253],"vertexIndices":[261,262,253]},{"id":"polygon-000402","normalIndices":[253,262,254],"vertexIndices":[253,262,254]},{"id":"polygon-000403","normalIndices":[262,263,254],"vertexIndices":[262,263,254]},{"id":"polygon-000404","normalIndices":[254,263,255],"vertexIndices":[254,263,255]},{"id":"polygon-000405","normalIndices":[263,264,255],"vertexIndices":[263,264,255]},{"id":"polygon-000406","normalIndices":[255,264,256],"vertexIndices":[255,264,256]},{"id":"polygon-000407","normalIndices":[264,265,256],"vertexIndices":[264,265,256]},{"id":"polygon-000408","normalIndices":[256,265,257],"vertexIndices":[256,265,257]},{"id":"polygon-000409","normalIndices":[265,266,257],"vertexIndices":[265,266,257]},{"id":"polygon-000410","normalIndices":[257,266,258],"vertexIndices":[257,266,258]},{"id":"polygon-000411","normalIndices":[266,267,258],"vertexIndices":[266,267,258]},{"id":"polygon-000412","normalIndices":[258,267,259],"vertexIndices":[258,267,259]},{"id":"polygon-000413","normalIndices":[267,268,259],"vertexIndices":[267,268,259]},{"id":"polygon-000414","normalIndices":[259,268,260],"vertexIndices":[259,268,260]},{"id":"polygon-000415","normalIndices":[268,269,260],"vertexIndices":[268,269,260]},{"id":"polygon-000416","normalIndices":[261,270,262],"vertexIndices":[261,270,262]},{"id":"polygon-000417","normalIndices":[270,271,262],"vertexIndices":[270,271,262]},{"id":"polygon-000418","normalIndices":[262,271,263],"vertexIndices":[262,271,263]},{"id":"polygon-000419","normalIndices":[271,272,263],"vertexIndices":[271,272,263]},{"id":"polygon-000420","normalIndices":[263,272,264],"vertexIndices":[263,272,264]},{"id":"polygon-000421","normalIndices":[272,273,264],"vertexIndices":[272,273,264]},{"id":"polygon-000422","normalIndices":[264,273,265],"vertexIndices":[264,273,265]},{"id":"polygon-000423","normalIndices":[273,274,265],"vertexIndices":[273,274,265]},{"id":"polygon-000424","normalIndices":[265,274,266],"vertexIndices":[265,274,266]},{"id":"polygon-000425","normalIndices":[274,275,266],"vertexIndices":[274,275,266]},{"id":"polygon-000426","normalIndices":[266,275,267],"vertexIndices":[266,275,267]},{"id":"polygon-000427","normalIndices":[275,276,267],"vertexIndices":[275,276,267]},{"id":"polygon-000428","normalIndices":[267,276,268],"vertexIndices":[267,276,268]},{"id":"polygon-000429","normalIndices":[276,277,268],"vertexIndices":[276,277,268]},{"id":"polygon-000430","normalIndices":[268,277,269],"vertexIndices":[268,277,269]},{"id":"polygon-000431","normalIndices":[277,278,269],"vertexIndices":[277,278,269]},{"id":"polygon-000432","normalIndices":[270,279,271],"vertexIndices":[270,279,271]},{"id":"polygon-000433","normalIndices":[279,280,271],"vertexIndices":[279,280,271]},{"id":"polygon-000434","normalIndices":[271,280,272],"vertexIndices":[271,280,272]},{"id":"polygon-000435","normalIndices":[280,281,272],"vertexIndices":[280,281,272]},{"id":"polygon-000436","normalIndices":[272,281,273],"vertexIndices":[272,281,273]},{"id":"polygon-000437","normalIndices":[281,282,273],"vertexIndices":[281,282,273]},{"id":"polygon-000438","normalIndices":[273,282,274],"vertexIndices":[273,282,274]},{"id":"polygon-000439","normalIndices":[282,283,274],"vertexIndices":[282,283,274]},{"id":"polygon-000440","normalIndices":[274,283,275],"vertexIndices":[274,283,275]},{"id":"polygon-000441","normalIndices":[283,284,275],"vertexIndices":[283,284,275]},{"id":"polygon-000442","normalIndices":[275,284,276],"vertexIndices":[275,284,276]},{"id":"polygon-000443","normalIndices":[284,285,276],"vertexIndices":[284,285,276]},{"id":"polygon-000444","normalIndices":[276,285,277],"vertexIndices":[276,285,277]},{"id":"polygon-000445","normalIndices":[285,286,277],"vertexIndices":[285,286,277]},{"id":"polygon-000446","normalIndices":[277,286,278],"vertexIndices":[277,286,278]},{"id":"polygon-000447","normalIndices":[286,287,278],"vertexIndices":[286,287,278]},{"id":"polygon-000448","normalIndices":[279,288,280],"vertexIndices":[279,288,280]},{"id":"polygon-000449","normalIndices":[288,289,280],"vertexIndices":[288,289,280]},{"id":"polygon-000450","normalIndices":[280,289,281],"vertexIndices":[280,289,281]},{"id":"polygon-000451","normalIndices":[289,290,281],"vertexIndices":[289,290,281]},{"id":"polygon-000452","normalIndices":[281,290,282],"vertexIndices":[281,290,282]},{"id":"polygon-000453","normalIndices":[290,291,282],"vertexIndices":[290,291,282]},{"id":"polygon-000454","normalIndices":[282,291,283],"vertexIndices":[282,291,283]},{"id":"polygon-000455","normalIndices":[291,292,283],"vertexIndices":[291,292,283]},{"id":"polygon-000456","normalIndices":[283,292,284],"vertexIndices":[283,292,284]},{"id":"polygon-000457","normalIndices":[292,293,284],"vertexIndices":[292,293,284]},{"id":"polygon-000458","normalIndices":[284,293,285],"vertexIndices":[284,293,285]},{"id":"polygon-000459","normalIndices":[293,294,285],"vertexIndices":[293,294,285]},{"id":"polygon-000460","normalIndices":[285,294,286],"vertexIndices":[285,294,286]},{"id":"polygon-000461","normalIndices":[294,295,286],"vertexIndices":[294,295,286]},{"id":"polygon-000462","normalIndices":[286,295,287],"vertexIndices":[286,295,287]},{"id":"polygon-000463","normalIndices":[295,296,287],"vertexIndices":[295,296,287]},{"id":"polygon-000464","normalIndices":[288,297,289],"vertexIndices":[288,297,289]},{"id":"polygon-000465","normalIndices":[297,298,289],"vertexIndices":[297,298,289]},{"id":"polygon-000466","normalIndices":[289,298,290],"vertexIndices":[289,298,290]},{"id":"polygon-000467","normalIndices":[298,299,290],"vertexIndices":[298,299,290]},{"id":"polygon-000468","normalIndices":[290,299,291],"vertexIndices":[290,299,291]},{"id":"polygon-000469","normalIndices":[299,300,291],"vertexIndices":[299,300,291]},{"id":"polygon-000470","normalIndices":[291,300,292],"vertexIndices":[291,300,292]},{"id":"polygon-000471","normalIndices":[300,301,292],"vertexIndices":[300,301,292]},{"id":"polygon-000472","normalIndices":[292,301,293],"vertexIndices":[292,301,293]},{"id":"polygon-000473","normalIndices":[301,302,293],"vertexIndices":[301,302,293]},{"id":"polygon-000474","normalIndices":[293,302,294],"vertexIndices":[293,302,294]},{"id":"polygon-000475","normalIndices":[302,303,294],"vertexIndices":[302,303,294]},{"id":"polygon-000476","normalIndices":[294,303,295],"vertexIndices":[294,303,295]},{"id":"polygon-000477","normalIndices":[303,304,295],"vertexIndices":[303,304,295]},{"id":"polygon-000478","normalIndices":[295,304,296],"vertexIndices":[295,304,296]},{"id":"polygon-000479","normalIndices":[304,305,296],"vertexIndices":[304,305,296]},{"id":"polygon-000480","normalIndices":[297,306,298],"vertexIndices":[297,306,298]},{"id":"polygon-000481","normalIndices":[306,307,298],"vertexIndices":[306,307,298]},{"id":"polygon-000482","normalIndices":[298,307,299],"vertexIndices":[298,307,299]},{"id":"polygon-000483","normalIndices":[307,308,299],"vertexIndices":[307,308,299]},{"id":"polygon-000484","normalIndices":[299,308,300],"vertexIndices":[299,308,300]},{"id":"polygon-000485","normalIndices":[308,309,300],"vertexIndices":[308,309,300]},{"id":"polygon-000486","normalIndices":[300,309,301],"vertexIndices":[300,309,301]},{"id":"polygon-000487","normalIndices":[309,310,301],"vertexIndices":[309,310,301]},{"id":"polygon-000488","normalIndices":[301,310,302],"vertexIndices":[301,310,302]},{"id":"polygon-000489","normalIndices":[310,311,302],"vertexIndices":[310,311,302]},{"id":"polygon-000490","normalIndices":[302,311,303],"vertexIndices":[302,311,303]},{"id":"polygon-000491","normalIndices":[311,312,303],"vertexIndices":[311,312,303]},{"id":"polygon-000492","normalIndices":[303,312,304],"vertexIndices":[303,312,304]},{"id":"polygon-000493","normalIndices":[312,313,304],"vertexIndices":[312,313,304]},{"id":"polygon-000494","normalIndices":[304,313,305],"vertexIndices":[304,313,305]},{"id":"polygon-000495","normalIndices":[313,314,305],"vertexIndices":[313,314,305]},{"id":"polygon-000496","normalIndices":[306,315,307],"vertexIndices":[306,315,307]},{"id":"polygon-000497","normalIndices":[315,316,307],"vertexIndices":[315,316,307]},{"id":"polygon-000498","normalIndices":[307,316,308],"vertexIndices":[307,316,308]},{"id":"polygon-000499","normalIndices":[316,317,308],"vertexIndices":[316,317,308]},{"id":"polygon-000500","normalIndices":[308,317,309],"vertexIndices":[308,317,309]},{"id":"polygon-000501","normalIndices":[317,318,309],"vertexIndices":[317,318,309]},{"id":"polygon-000502","normalIndices":[309,318,310],"vertexIndices":[309,318,310]},{"id":"polygon-000503","normalIndices":[318,319,310],"vertexIndices":[318,319,310]},{"id":"polygon-000504","normalIndices":[310,319,311],"vertexIndices":[310,319,311]},{"id":"polygon-000505","normalIndices":[319,320,311],"vertexIndices":[319,320,311]},{"id":"polygon-000506","normalIndices":[311,320,312],"vertexIndices":[311,320,312]},{"id":"polygon-000507","normalIndices":[320,321,312],"vertexIndices":[320,321,312]},{"id":"polygon-000508","normalIndices":[312,321,313],"vertexIndices":[312,321,313]},{"id":"polygon-000509","normalIndices":[321,322,313],"vertexIndices":[321,322,313]},{"id":"polygon-000510","normalIndices":[313,322,314],"vertexIndices":[313,322,314]},{"id":"polygon-000511","normalIndices":[322,323,314],"vertexIndices":[322,323,314]},{"id":"polygon-000512","normalIndices":[324,333,325],"vertexIndices":[324,333,325]},{"id":"polygon-000513","normalIndices":[333,334,325],"vertexIndices":[333,334,325]},{"id":"polygon-000514","normalIndices":[325,334,326],"vertexIndices":[325,334,326]},{"id":"polygon-000515","normalIndices":[334,335,326],"vertexIndices":[334,335,326]},{"id":"polygon-000516","normalIndices":[326,335,327],"vertexIndices":[326,335,327]},{"id":"polygon-000517","normalIndices":[335,336,327],"vertexIndices":[335,336,327]},{"id":"polygon-000518","normalIndices":[327,336,328],"vertexIndices":[327,336,328]},{"id":"polygon-000519","normalIndices":[336,337,328],"vertexIndices":[336,337,328]},{"id":"polygon-000520","normalIndices":[328,337,329],"vertexIndices":[328,337,329]},{"id":"polygon-000521","normalIndices":[337,338,329],"vertexIndices":[337,338,329]},{"id":"polygon-000522","normalIndices":[329,338,330],"vertexIndices":[329,338,330]},{"id":"polygon-000523","normalIndices":[338,339,330],"vertexIndices":[338,339,330]},{"id":"polygon-000524","normalIndices":[330,339,331],"vertexIndices":[330,339,331]},{"id":"polygon-000525","normalIndices":[339,340,331],"vertexIndices":[339,340,331]},{"id":"polygon-000526","normalIndices":[331,340,332],"vertexIndices":[331,340,332]},{"id":"polygon-000527","normalIndices":[340,341,332],"vertexIndices":[340,341,332]},{"id":"polygon-000528","normalIndices":[333,342,334],"vertexIndices":[333,342,334]},{"id":"polygon-000529","normalIndices":[342,343,334],"vertexIndices":[342,343,334]},{"id":"polygon-000530","normalIndices":[334,343,335],"vertexIndices":[334,343,335]},{"id":"polygon-000531","normalIndices":[343,344,335],"vertexIndices":[343,344,335]},{"id":"polygon-000532","normalIndices":[335,344,336],"vertexIndices":[335,344,336]},{"id":"polygon-000533","normalIndices":[344,345,336],"vertexIndices":[344,345,336]},{"id":"polygon-000534","normalIndices":[336,345,337],"vertexIndices":[336,345,337]},{"id":"polygon-000535","normalIndices":[345,346,337],"vertexIndices":[345,346,337]},{"id":"polygon-000536","normalIndices":[337,346,338],"vertexIndices":[337,346,338]},{"id":"polygon-000537","normalIndices":[346,347,338],"vertexIndices":[346,347,338]},{"id":"polygon-000538","normalIndices":[338,347,339],"vertexIndices":[338,347,339]},{"id":"polygon-000539","normalIndices":[347,348,339],"vertexIndices":[347,348,339]},{"id":"polygon-000540","normalIndices":[339,348,340],"vertexIndices":[339,348,340]},{"id":"polygon-000541","normalIndices":[348,349,340],"vertexIndices":[348,349,340]},{"id":"polygon-000542","normalIndices":[340,349,341],"vertexIndices":[340,349,341]},{"id":"polygon-000543","normalIndices":[349,350,341],"vertexIndices":[349,350,341]},{"id":"polygon-000544","normalIndices":[342,351,343],"vertexIndices":[342,351,343]},{"id":"polygon-000545","normalIndices":[351,352,343],"vertexIndices":[351,352,343]},{"id":"polygon-000546","normalIndices":[343,352,344],"vertexIndices":[343,352,344]},{"id":"polygon-000547","normalIndices":[352,353,344],"vertexIndices":[352,353,344]},{"id":"polygon-000548","normalIndices":[344,353,345],"vertexIndices":[344,353,345]},{"id":"polygon-000549","normalIndices":[353,354,345],"vertexIndices":[353,354,345]},{"id":"polygon-000550","normalIndices":[345,354,346],"vertexIndices":[345,354,346]},{"id":"polygon-000551","normalIndices":[354,355,346],"vertexIndices":[354,355,346]},{"id":"polygon-000552","normalIndices":[346,355,347],"vertexIndices":[346,355,347]},{"id":"polygon-000553","normalIndices":[355,356,347],"vertexIndices":[355,356,347]},{"id":"polygon-000554","normalIndices":[347,356,348],"vertexIndices":[347,356,348]},{"id":"polygon-000555","normalIndices":[356,357,348],"vertexIndices":[356,357,348]},{"id":"polygon-000556","normalIndices":[348,357,349],"vertexIndices":[348,357,349]},{"id":"polygon-000557","normalIndices":[357,358,349],"vertexIndices":[357,358,349]},{"id":"polygon-000558","normalIndices":[349,358,350],"vertexIndices":[349,358,350]},{"id":"polygon-000559","normalIndices":[358,359,350],"vertexIndices":[358,359,350]},{"id":"polygon-000560","normalIndices":[351,360,352],"vertexIndices":[351,360,352]},{"id":"polygon-000561","normalIndices":[360,361,352],"vertexIndices":[360,361,352]},{"id":"polygon-000562","normalIndices":[352,361,353],"vertexIndices":[352,361,353]},{"id":"polygon-000563","normalIndices":[361,362,353],"vertexIndices":[361,362,353]},{"id":"polygon-000564","normalIndices":[353,362,354],"vertexIndices":[353,362,354]},{"id":"polygon-000565","normalIndices":[362,363,354],"vertexIndices":[362,363,354]},{"id":"polygon-000566","normalIndices":[354,363,355],"vertexIndices":[354,363,355]},{"id":"polygon-000567","normalIndices":[363,364,355],"vertexIndices":[363,364,355]},{"id":"polygon-000568","normalIndices":[355,364,356],"vertexIndices":[355,364,356]},{"id":"polygon-000569","normalIndices":[364,365,356],"vertexIndices":[364,365,356]},{"id":"polygon-000570","normalIndices":[356,365,357],"vertexIndices":[356,365,357]},{"id":"polygon-000571","normalIndices":[365,366,357],"vertexIndices":[365,366,357]},{"id":"polygon-000572","normalIndices":[357,366,358],"vertexIndices":[357,366,358]},{"id":"polygon-000573","normalIndices":[366,367,358],"vertexIndices":[366,367,358]},{"id":"polygon-000574","normalIndices":[358,367,359],"vertexIndices":[358,367,359]},{"id":"polygon-000575","normalIndices":[367,368,359],"vertexIndices":[367,368,359]},{"id":"polygon-000576","normalIndices":[360,369,361],"vertexIndices":[360,369,361]},{"id":"polygon-000577","normalIndices":[369,370,361],"vertexIndices":[369,370,361]},{"id":"polygon-000578","normalIndices":[361,370,362],"vertexIndices":[361,370,362]},{"id":"polygon-000579","normalIndices":[370,371,362],"vertexIndices":[370,371,362]},{"id":"polygon-000580","normalIndices":[362,371,363],"vertexIndices":[362,371,363]},{"id":"polygon-000581","normalIndices":[371,372,363],"vertexIndices":[371,372,363]},{"id":"polygon-000582","normalIndices":[363,372,364],"vertexIndices":[363,372,364]},{"id":"polygon-000583","normalIndices":[372,373,364],"vertexIndices":[372,373,364]},{"id":"polygon-000584","normalIndices":[364,373,365],"vertexIndices":[364,373,365]},{"id":"polygon-000585","normalIndices":[373,374,365],"vertexIndices":[373,374,365]},{"id":"polygon-000586","normalIndices":[365,374,366],"vertexIndices":[365,374,366]},{"id":"polygon-000587","normalIndices":[374,375,366],"vertexIndices":[374,375,366]},{"id":"polygon-000588","normalIndices":[366,375,367],"vertexIndices":[366,375,367]},{"id":"polygon-000589","normalIndices":[375,376,367],"vertexIndices":[375,376,367]},{"id":"polygon-000590","normalIndices":[367,376,368],"vertexIndices":[367,376,368]},{"id":"polygon-000591","normalIndices":[376,377,368],"vertexIndices":[376,377,368]},{"id":"polygon-000592","normalIndices":[369,378,370],"vertexIndices":[369,378,370]},{"id":"polygon-000593","normalIndices":[378,379,370],"vertexIndices":[378,379,370]},{"id":"polygon-000594","normalIndices":[370,379,371],"vertexIndices":[370,379,371]},{"id":"polygon-000595","normalIndices":[379,380,371],"vertexIndices":[379,380,371]},{"id":"polygon-000596","normalIndices":[371,380,372],"vertexIndices":[371,380,372]},{"id":"polygon-000597","normalIndices":[380,381,372],"vertexIndices":[380,381,372]},{"id":"polygon-000598","normalIndices":[372,381,373],"vertexIndices":[372,381,373]},{"id":"polygon-000599","normalIndices":[381,382,373],"vertexIndices":[381,382,373]},{"id":"polygon-000600","normalIndices":[373,382,374],"vertexIndices":[373,382,374]},{"id":"polygon-000601","normalIndices":[382,383,374],"vertexIndices":[382,383,374]},{"id":"polygon-000602","normalIndices":[374,383,375],"vertexIndices":[374,383,375]},{"id":"polygon-000603","normalIndices":[383,384,375],"vertexIndices":[383,384,375]},{"id":"polygon-000604","normalIndices":[375,384,376],"vertexIndices":[375,384,376]},{"id":"polygon-000605","normalIndices":[384,385,376],"vertexIndices":[384,385,376]},{"id":"polygon-000606","normalIndices":[376,385,377],"vertexIndices":[376,385,377]},{"id":"polygon-000607","normalIndices":[385,386,377],"vertexIndices":[385,386,377]},{"id":"polygon-000608","normalIndices":[378,387,379],"vertexIndices":[378,387,379]},{"id":"polygon-000609","normalIndices":[387,388,379],"vertexIndices":[387,388,379]},{"id":"polygon-000610","normalIndices":[379,388,380],"vertexIndices":[379,388,380]},{"id":"polygon-000611","normalIndices":[388,389,380],"vertexIndices":[388,389,380]},{"id":"polygon-000612","normalIndices":[380,389,381],"vertexIndices":[380,389,381]},{"id":"polygon-000613","normalIndices":[389,390,381],"vertexIndices":[389,390,381]},{"id":"polygon-000614","normalIndices":[381,390,382],"vertexIndices":[381,390,382]},{"id":"polygon-000615","normalIndices":[390,391,382],"vertexIndices":[390,391,382]},{"id":"polygon-000616","normalIndices":[382,391,383],"vertexIndices":[382,391,383]},{"id":"polygon-000617","normalIndices":[391,392,383],"vertexIndices":[391,392,383]},{"id":"polygon-000618","normalIndices":[383,392,384],"vertexIndices":[383,392,384]},{"id":"polygon-000619","normalIndices":[392,393,384],"vertexIndices":[392,393,384]},{"id":"polygon-000620","normalIndices":[384,393,385],"vertexIndices":[384,393,385]},{"id":"polygon-000621","normalIndices":[393,394,385],"vertexIndices":[393,394,385]},{"id":"polygon-000622","normalIndices":[385,394,386],"vertexIndices":[385,394,386]},{"id":"polygon-000623","normalIndices":[394,395,386],"vertexIndices":[394,395,386]},{"id":"polygon-000624","normalIndices":[387,396,388],"vertexIndices":[387,396,388]},{"id":"polygon-000625","normalIndices":[396,397,388],"vertexIndices":[396,397,388]},{"id":"polygon-000626","normalIndices":[388,397,389],"vertexIndices":[388,397,389]},{"id":"polygon-000627","normalIndices":[397,398,389],"vertexIndices":[397,398,389]},{"id":"polygon-000628","normalIndices":[389,398,390],"vertexIndices":[389,398,390]},{"id":"polygon-000629","normalIndices":[398,399,390],"vertexIndices":[398,399,390]},{"id":"polygon-000630","normalIndices":[390,399,391],"vertexIndices":[390,399,391]},{"id":"polygon-000631","normalIndices":[399,400,391],"vertexIndices":[399,400,391]},{"id":"polygon-000632","normalIndices":[391,400,392],"vertexIndices":[391,400,392]},{"id":"polygon-000633","normalIndices":[400,401,392],"vertexIndices":[400,401,392]},{"id":"polygon-000634","normalIndices":[392,401,393],"vertexIndices":[392,401,393]},{"id":"polygon-000635","normalIndices":[401,402,393],"vertexIndices":[401,402,393]},{"id":"polygon-000636","normalIndices":[393,402,394],"vertexIndices":[393,402,394]},{"id":"polygon-000637","normalIndices":[402,403,394],"vertexIndices":[402,403,394]},{"id":"polygon-000638","normalIndices":[394,403,395],"vertexIndices":[394,403,395]},{"id":"polygon-000639","normalIndices":[403,404,395],"vertexIndices":[403,404,395]},{"id":"polygon-000640","normalIndices":[405,414,406],"vertexIndices":[405,414,406]},{"id":"polygon-000641","normalIndices":[414,415,406],"vertexIndices":[414,415,406]},{"id":"polygon-000642","normalIndices":[406,415,407],"vertexIndices":[406,415,407]},{"id":"polygon-000643","normalIndices":[415,416,407],"vertexIndices":[415,416,407]},{"id":"polygon-000644","normalIndices":[407,416,408],"vertexIndices":[407,416,408]},{"id":"polygon-000645","normalIndices":[416,417,408],"vertexIndices":[416,417,408]},{"id":"polygon-000646","normalIndices":[408,417,409],"vertexIndices":[408,417,409]},{"id":"polygon-000647","normalIndices":[417,418,409],"vertexIndices":[417,418,409]},{"id":"polygon-000648","normalIndices":[409,418,410],"vertexIndices":[409,418,410]},{"id":"polygon-000649","normalIndices":[418,419,410],"vertexIndices":[418,419,410]},{"id":"polygon-000650","normalIndices":[410,419,411],"vertexIndices":[410,419,411]},{"id":"polygon-000651","normalIndices":[419,420,411],"vertexIndices":[419,420,411]},{"id":"polygon-000652","normalIndices":[411,420,412],"vertexIndices":[411,420,412]},{"id":"polygon-000653","normalIndices":[420,421,412],"vertexIndices":[420,421,412]},{"id":"polygon-000654","normalIndices":[412,421,413],"vertexIndices":[412,421,413]},{"id":"polygon-000655","normalIndices":[421,422,413],"vertexIndices":[421,422,413]},{"id":"polygon-000656","normalIndices":[414,423,415],"vertexIndices":[414,423,415]},{"id":"polygon-000657","normalIndices":[423,424,415],"vertexIndices":[423,424,415]},{"id":"polygon-000658","normalIndices":[415,424,416],"vertexIndices":[415,424,416]},{"id":"polygon-000659","normalIndices":[424,425,416],"vertexIndices":[424,425,416]},{"id":"polygon-000660","normalIndices":[416,425,417],"vertexIndices":[416,425,417]},{"id":"polygon-000661","normalIndices":[425,426,417],"vertexIndices":[425,426,417]},{"id":"polygon-000662","normalIndices":[417,426,418],"vertexIndices":[417,426,418]},{"id":"polygon-000663","normalIndices":[426,427,418],"vertexIndices":[426,427,418]},{"id":"polygon-000664","normalIndices":[418,427,419],"vertexIndices":[418,427,419]},{"id":"polygon-000665","normalIndices":[427,428,419],"vertexIndices":[427,428,419]},{"id":"polygon-000666","normalIndices":[419,428,420],"vertexIndices":[419,428,420]},{"id":"polygon-000667","normalIndices":[428,429,420],"vertexIndices":[428,429,420]},{"id":"polygon-000668","normalIndices":[420,429,421],"vertexIndices":[420,429,421]},{"id":"polygon-000669","normalIndices":[429,430,421],"vertexIndices":[429,430,421]},{"id":"polygon-000670","normalIndices":[421,430,422],"vertexIndices":[421,430,422]},{"id":"polygon-000671","normalIndices":[430,431,422],"vertexIndices":[430,431,422]},{"id":"polygon-000672","normalIndices":[423,432,424],"vertexIndices":[423,432,424]},{"id":"polygon-000673","normalIndices":[432,433,424],"vertexIndices":[432,433,424]},{"id":"polygon-000674","normalIndices":[424,433,425],"vertexIndices":[424,433,425]},{"id":"polygon-000675","normalIndices":[433,434,425],"vertexIndices":[433,434,425]},{"id":"polygon-000676","normalIndices":[425,434,426],"vertexIndices":[425,434,426]},{"id":"polygon-000677","normalIndices":[434,435,426],"vertexIndices":[434,435,426]},{"id":"polygon-000678","normalIndices":[426,435,427],"vertexIndices":[426,435,427]},{"id":"polygon-000679","normalIndices":[435,436,427],"vertexIndices":[435,436,427]},{"id":"polygon-000680","normalIndices":[427,436,428],"vertexIndices":[427,436,428]},{"id":"polygon-000681","normalIndices":[436,437,428],"vertexIndices":[436,437,428]},{"id":"polygon-000682","normalIndices":[428,437,429],"vertexIndices":[428,437,429]},{"id":"polygon-000683","normalIndices":[437,438,429],"vertexIndices":[437,438,429]},{"id":"polygon-000684","normalIndices":[429,438,430],"vertexIndices":[429,438,430]},{"id":"polygon-000685","normalIndices":[438,439,430],"vertexIndices":[438,439,430]},{"id":"polygon-000686","normalIndices":[430,439,431],"vertexIndices":[430,439,431]},{"id":"polygon-000687","normalIndices":[439,440,431],"vertexIndices":[439,440,431]},{"id":"polygon-000688","normalIndices":[432,441,433],"vertexIndices":[432,441,433]},{"id":"polygon-000689","normalIndices":[441,442,433],"vertexIndices":[441,442,433]},{"id":"polygon-000690","normalIndices":[433,442,434],"vertexIndices":[433,442,434]},{"id":"polygon-000691","normalIndices":[442,443,434],"vertexIndices":[442,443,434]},{"id":"polygon-000692","normalIndices":[434,443,435],"vertexIndices":[434,443,435]},{"id":"polygon-000693","normalIndices":[443,444,435],"vertexIndices":[443,444,435]},{"id":"polygon-000694","normalIndices":[435,444,436],"vertexIndices":[435,444,436]},{"id":"polygon-000695","normalIndices":[444,445,436],"vertexIndices":[444,445,436]},{"id":"polygon-000696","normalIndices":[436,445,437],"vertexIndices":[436,445,437]},{"id":"polygon-000697","normalIndices":[445,446,437],"vertexIndices":[445,446,437]},{"id":"polygon-000698","normalIndices":[437,446,438],"vertexIndices":[437,446,438]},{"id":"polygon-000699","normalIndices":[446,447,438],"vertexIndices":[446,447,438]},{"id":"polygon-000700","normalIndices":[438,447,439],"vertexIndices":[438,447,439]},{"id":"polygon-000701","normalIndices":[447,448,439],"vertexIndices":[447,448,439]},{"id":"polygon-000702","normalIndices":[439,448,440],"vertexIndices":[439,448,440]},{"id":"polygon-000703","normalIndices":[448,449,440],"vertexIndices":[448,449,440]},{"id":"polygon-000704","normalIndices":[441,450,442],"vertexIndices":[441,450,442]},{"id":"polygon-000705","normalIndices":[450,451,442],"vertexIndices":[450,451,442]},{"id":"polygon-000706","normalIndices":[442,451,443],"vertexIndices":[442,451,443]},{"id":"polygon-000707","normalIndices":[451,452,443],"vertexIndices":[451,452,443]},{"id":"polygon-000708","normalIndices":[443,452,444],"vertexIndices":[443,452,444]},{"id":"polygon-000709","normalIndices":[452,453,444],"vertexIndices":[452,453,444]},{"id":"polygon-000710","normalIndices":[444,453,445],"vertexIndices":[444,453,445]},{"id":"polygon-000711","normalIndices":[453,454,445],"vertexIndices":[453,454,445]},{"id":"polygon-000712","normalIndices":[445,454,446],"vertexIndices":[445,454,446]},{"id":"polygon-000713","normalIndices":[454,455,446],"vertexIndices":[454,455,446]},{"id":"polygon-000714","normalIndices":[446,455,447],"vertexIndices":[446,455,447]},{"id":"polygon-000715","normalIndices":[455,456,447],"vertexIndices":[455,456,447]},{"id":"polygon-000716","normalIndices":[447,456,448],"vertexIndices":[447,456,448]},{"id":"polygon-000717","normalIndices":[456,457,448],"vertexIndices":[456,457,448]},{"id":"polygon-000718","normalIndices":[448,457,449],"vertexIndices":[448,457,449]},{"id":"polygon-000719","normalIndices":[457,458,449],"vertexIndices":[457,458,449]},{"id":"polygon-000720","normalIndices":[450,459,451],"vertexIndices":[450,459,451]},{"id":"polygon-000721","normalIndices":[459,460,451],"vertexIndices":[459,460,451]},{"id":"polygon-000722","normalIndices":[451,460,452],"vertexIndices":[451,460,452]},{"id":"polygon-000723","normalIndices":[460,461,452],"vertexIndices":[460,461,452]},{"id":"polygon-000724","normalIndices":[452,461,453],"vertexIndices":[452,461,453]},{"id":"polygon-000725","normalIndices":[461,462,453],"vertexIndices":[461,462,453]},{"id":"polygon-000726","normalIndices":[453,462,454],"vertexIndices":[453,462,454]},{"id":"polygon-000727","normalIndices":[462,463,454],"vertexIndices":[462,463,454]},{"id":"polygon-000728","normalIndices":[454,463,455],"vertexIndices":[454,463,455]},{"id":"polygon-000729","normalIndices":[463,464,455],"vertexIndices":[463,464,455]},{"id":"polygon-000730","normalIndices":[455,464,456],"vertexIndices":[455,464,456]},{"id":"polygon-000731","normalIndices":[464,465,456],"vertexIndices":[464,465,456]},{"id":"polygon-000732","normalIndices":[456,465,457],"vertexIndices":[456,465,457]},{"id":"polygon-000733","normalIndices":[465,466,457],"vertexIndices":[465,466,457]},{"id":"polygon-000734","normalIndices":[457,466,458],"vertexIndices":[457,466,458]},{"id":"polygon-000735","normalIndices":[466,467,458],"vertexIndices":[466,467,458]},{"id":"polygon-000736","normalIndices":[459,468,460],"vertexIndices":[459,468,460]},{"id":"polygon-000737","normalIndices":[468,469,460],"vertexIndices":[468,469,460]},{"id":"polygon-000738","normalIndices":[460,469,461],"vertexIndices":[460,469,461]},{"id":"polygon-000739","normalIndices":[469,470,461],"vertexIndices":[469,470,461]},{"id":"polygon-000740","normalIndices":[461,470,462],"vertexIndices":[461,470,462]},{"id":"polygon-000741","normalIndices":[470,471,462],"vertexIndices":[470,471,462]},{"id":"polygon-000742","normalIndices":[462,471,463],"vertexIndices":[462,471,463]},{"id":"polygon-000743","normalIndices":[471,472,463],"vertexIndices":[471,472,463]},{"id":"polygon-000744","normalIndices":[463,472,464],"vertexIndices":[463,472,464]},{"id":"polygon-000745","normalIndices":[472,473,464],"vertexIndices":[472,473,464]},{"id":"polygon-000746","normalIndices":[464,473,465],"vertexIndices":[464,473,465]},{"id":"polygon-000747","normalIndices":[473,474,465],"vertexIndices":[473,474,465]},{"id":"polygon-000748","normalIndices":[465,474,466],"vertexIndices":[465,474,466]},{"id":"polygon-000749","normalIndices":[474,475,466],"vertexIndices":[474,475,466]},{"id":"polygon-000750","normalIndices":[466,475,467],"vertexIndices":[466,475,467]},{"id":"polygon-000751","normalIndices":[475,476,467],"vertexIndices":[475,476,467]},{"id":"polygon-000752","normalIndices":[468,477,469],"vertexIndices":[468,477,469]},{"id":"polygon-000753","normalIndices":[477,478,469],"vertexIndices":[477,478,469]},{"id":"polygon-000754","normalIndices":[469,478,470],"vertexIndices":[469,478,470]},{"id":"polygon-000755","normalIndices":[478,479,470],"vertexIndices":[478,479,470]},{"id":"polygon-000756","normalIndices":[470,479,471],"vertexIndices":[470,479,471]},{"id":"polygon-000757","normalIndices":[479,480,471],"vertexIndices":[479,480,471]},{"id":"polygon-000758","normalIndices":[471,480,472],"vertexIndices":[471,480,472]},{"id":"polygon-000759","normalIndices":[480,481,472],"vertexIndices":[480,481,472]},{"id":"polygon-000760","normalIndices":[472,481,473],"vertexIndices":[472,481,473]},{"id":"polygon-000761","normalIndices":[481,482,473],"vertexIndices":[481,482,473]},{"id":"polygon-000762","normalIndices":[473,482,474],"vertexIndices":[473,482,474]},{"id":"polygon-000763","normalIndices":[482,483,474],"vertexIndices":[482,483,474]},{"id":"polygon-000764","normalIndices":[474,483,475],"vertexIndices":[474,483,475]},{"id":"polygon-000765","normalIndices":[483,484,475],"vertexIndices":[483,484,475]},{"id":"polygon-000766","normalIndices":[475,484,476],"vertexIndices":[475,484,476]},{"id":"polygon-000767","normalIndices":[484,485,476],"vertexIndices":[484,485,476]}],"vertices":[[100,-100,100],[100,-100,75],[100,-100,50],[100,-100,25],[100,-100,0],[100,-100,-25],[100,-100,-50],[100,-100,-75],[100,-100,-100],[100,-75,100],[100,-75,75],[100,-75,50],[100,-75,25],[100,-75,0],[100,-75,-25],[100,-75,-50],[100,-75,-75],[100,-75,-100],[100,-50,100],[100,-50,75],[100,-50,50],[100,-50,25],[100,-50,0],[100,-50,-25],[100,-50,-50],[100,-50,-75],[100,-50,-100],[100,-25,100],[100,-25,75],[100,-25,50],[100,-25,25],[100,-25,0],[100,-25,-25],[100,-25,-50],[100,-25,-75],[100,-25,-100],[100,0,100],[100,0,75],[100,0,50],[100,0,25],[100,0,0],[100,0,-25],[100,0,-50],[100,0,-75],[100,0,-100],[100,25,100],[100,25,75],[100,25,50],[100,25,25],[100,25,0],[100,25,-25],[100,25,-50],[100,25,-75],[100,25,-100],[100,50,100],[100,50,75],[100,50,50],[100,50,25],[100,50,0],[100,50,-25],[100,50,-50],[100,50,-75],[100,50,-100],[100,75,100],[100,75,75],[100,75,50],[100,75,25],[100,75,0],[100,75,-25],[100,75,-50],[100,75,-75],[100,75,-100],[100,100,100],[100,100,75],[100,100,50],[100,100,25],[100,100,0],[100,100,-25],[100,100,-50],[100,100,-75],[100,100,-100],[-100,-100,-100],[-100,-100,-75],[-100,-100,-50],[-100,-100,-25],[-100,-100,0],[-100,-100,25],[-100,-100,50],[-100,-100,75],[-100,-100,100],[-100,-75,-100],[-100,-75,-75],[-100,-75,-50],[-100,-75,-25],[-100,-75,0],[-100,-75,25],[-100,-75,50],[-100,-75,75],[-100,-75,100],[-100,-50,-100],[-100,-50,-75],[-100,-50,-50],[-100,-50,-25],[-100,-50,0],[-100,-50,25],[-100,-50,50],[-100,-50,75],[-100,-50,100],[-100,-25,-100],[-100,-25,-75],[-100,-25,-50],[-100,-25,-25],[-100,-25,0],[-100,-25,25],[-100,-25,50],[-100,-25,75],[-100,-25,100],[-100,0,-100],[-100,0,-75],[-100,0,-50],[-100,0,-25],[-100,0,0],[-100,0,25],[-100,0,50],[-100,0,75],[-100,0,100],[-100,25,-100],[-100,25,-75],[-100,25,-50],[-100,25,-25],[-100,25,0],[-100,25,25],[-100,25,50],[-100,25,75],[-100,25,100],[-100,50,-100],[-100,50,-75],[-100,50,-50],[-100,50,-25],[-100,50,0],[-100,50,25],[-100,50,50],[-100,50,75],[-100,50,100],[-100,75,-100],[-100,75,-75],[-100,75,-50],[-100,75,-25],[-100,75,0],[-100,75,25],[-100,75,50],[-100,75,75],[-100,75,100],[-100,100,-100],[-100,100,-75],[-100,100,-50],[-100,100,-25],[-100,100,0],[-100,100,25],[-100,100,50],[-100,100,75],[-100,100,100],[-100,-100,-100],[-75,-100,-100],[-50,-100,-100],[-25,-100,-100],[0,-100,-100],[25,-100,-100],[50,-100,-100],[75,-100,-100],[100,-100,-100],[-100,-100,-75],[-75,-100,-75],[-50,-100,-75],[-25,-100,-75],[0,-100,-75],[25,-100,-75],[50,-100,-75],[75,-100,-75],[100,-100,-75],[-100,-100,-50],[-75,-100,-50],[-50,-100,-50],[-25,-100,-50],[0,-100,-50],[25,-100,-50],[50,-100,-50],[75,-100,-50],[100,-100,-50],[-100,-100,-25],[-75,-100,-25],[-50,-100,-25],[-25,-100,-25],[0,-100,-25],[25,-100,-25],[50,-100,-25],[75,-100,-25],[100,-100,-25],[-100,-100,0],[-75,-100,0],[-50,-100,0],[-25,-100,0],[0,-100,0],[25,-100,0],[50,-100,0],[75,-100,0],[100,-100,0],[-100,-100,25],[-75,-100,25],[-50,-100,25],[-25,-100,25],[0,-100,25],[25,-100,25],[50,-100,25],[75,-100,25],[100,-100,25],[-100,-100,50],[-75,-100,50],[-50,-100,50],[-25,-100,50],[0,-100,50],[25,-100,50],[50,-100,50],[75,-100,50],[100,-100,50],[-100,-100,75],[-75,-100,75],[-50,-100,75],[-25,-100,75],[0,-100,75],[25,-100,75],[50,-100,75],[75,-100,75],[100,-100,75],[-100,-100,100],[-75,-100,100],[-50,-100,100],[-25,-100,100],[0,-100,100],[25,-100,100],[50,-100,100],[75,-100,100],[100,-100,100],[-100,100,100],[-75,100,100],[-50,100,100],[-25,100,100],[0,100,100],[25,100,100],[50,100,100],[75,100,100],[100,100,100],[-100,100,75],[-75,100,75],[-50,100,75],[-25,100,75],[0,100,75],[25,100,75],[50,100,75],[75,100,75],[100,100,75],[-100,100,50],[-75,100,50],[-50,100,50],[-25,100,50],[0,100,50],[25,100,50],[50,100,50],[75,100,50],[100,100,50],[-100,100,25],[-75,100,25],[-50,100,25],[-25,100,25],[0,100,25],[25,100,25],[50,100,25],[75,100,25],[100,100,25],[-100,100,0],[-75,100,0],[-50,100,0],[-25,100,0],[0,100,0],[25,100,0],[50,100,0],[75,100,0],[100,100,0],[-100,100,-25],[-75,100,-25],[-50,100,-25],[-25,100,-25],[0,100,-25],[25,100,-25],[50,100,-25],[75,100,-25],[100,100,-25],[-100,100,-50],[-75,100,-50],[-50,100,-50],[-25,100,-50],[0,100,-50],[25,100,-50],[50,100,-50],[75,100,-50],[100,100,-50],[-100,100,-75],[-75,100,-75],[-50,100,-75],[-25,100,-75],[0,100,-75],[25,100,-75],[50,100,-75],[75,100,-75],[100,100,-75],[-100,100,-100],[-75,100,-100],[-50,100,-100],[-25,100,-100],[0,100,-100],[25,100,-100],[50,100,-100],[75,100,-100],[100,100,-100],[-100,-100,100],[-75,-100,100],[-50,-100,100],[-25,-100,100],[0,-100,100],[25,-100,100],[50,-100,100],[75,-100,100],[100,-100,100],[-100,-75,100],[-75,-75,100],[-50,-75,100],[-25,-75,100],[0,-75,100],[25,-75,100],[50,-75,100],[75,-75,100],[100,-75,100],[-100,-50,100],[-75,-50,100],[-50,-50,100],[-25,-50,100],[0,-50,100],[25,-50,100],[50,-50,100],[75,-50,100],[100,-50,100],[-100,-25,100],[-75,-25,100],[-50,-25,100],[-25,-25,100],[0,-25,100],[25,-25,100],[50,-25,100],[75,-25,100],[100,-25,100],[-100,0,100],[-75,0,100],[-50,0,100],[-25,0,100],[0,0,100],[25,0,100],[50,0,100],[75,0,100],[100,0,100],[-100,25,100],[-75,25,100],[-50,25,100],[-25,25,100],[0,25,100],[25,25,100],[50,25,100],[75,25,100],[100,25,100],[-100,50,100],[-75,50,100],[-50,50,100],[-25,50,100],[0,50,100],[25,50,100],[50,50,100],[75,50,100],[100,50,100],[-100,75,100],[-75,75,100],[-50,75,100],[-25,75,100],[0,75,100],[25,75,100],[50,75,100],[75,75,100],[100,75,100],[-100,100,100],[-75,100,100],[-50,100,100],[-25,100,100],[0,100,100],[25,100,100],[50,100,100],[75,100,100],[100,100,100],[100,-100,-100],[75,-100,-100],[50,-100,-100],[25,-100,-100],[0,-100,-100],[-25,-100,-100],[-50,-100,-100],[-75,-100,-100],[-100,-100,-100],[100,-75,-100],[75,-75,-100],[50,-75,-100],[25,-75,-100],[0,-75,-100],[-25,-75,-100],[-50,-75,-100],[-75,-75,-100],[-100,-75,-100],[100,-50,-100],[75,-50,-100],[50,-50,-100],[25,-50,-100],[0,-50,-100],[-25,-50,-100],[-50,-50,-100],[-75,-50,-100],[-100,-50,-100],[100,-25,-100],[75,-25,-100],[50,-25,-100],[25,-25,-100],[0,-25,-100],[-25,-25,-100],[-50,-25,-100],[-75,-25,-100],[-100,-25,-100],[100,0,-100],[75,0,-100],[50,0,-100],[25,0,-100],[0,0,-100],[-25,0,-100],[-50,0,-100],[-75,0,-100],[-100,0,-100],[100,25,-100],[75,25,-100],[50,25,-100],[25,25,-100],[0,25,-100],[-25,25,-100],[-50,25,-100],[-75,25,-100],[-100,25,-100],[100,50,-100],[75,50,-100],[50,50,-100],[25,50,-100],[0,50,-100],[-25,50,-100],[-50,50,-100],[-75,50,-100],[-100,50,-100],[100,75,-100],[75,75,-100],[50,75,-100],[25,75,-100],[0,75,-100],[-25,75,-100],[-50,75,-100],[-75,75,-100],[-100,75,-100],[100,100,-100],[75,100,-100],[50,100,-100],[25,100,-100],[0,100,-100],[-25,100,-100],[-50,100,-100],[-75,100,-100],[-100,100,-100]]}} diff --git a/website/src/components/MorphTargetsDemo.astro b/website/src/components/MorphTargetsDemo.astro new file mode 100644 index 00000000..ba065742 --- /dev/null +++ b/website/src/components/MorphTargetsDemo.astro @@ -0,0 +1,472 @@ + + +
+ Loading model… +
+ +